:root {
    --red: #c8102e;
    --red-dark: #9b0c22;
    --red-light: #e8294a;
    --white: #ffffff;
    --off-white: #f9f6f2;
    --gray-light: #f2ede8;
    --gray-mid: #d5cec8;
    --gray-dark: #3a3530;
    --charcoal: #1e1a17;
    --accent: #d4a853;
    --accent-light: #f0cc82;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ─── UTILITY ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    font-size: 17px;
    line-height: 1.8;
    color: #6b6560;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.35);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ─── TOP BAR ─── */
.topbar {
    background: var(--charcoal);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 2px solid var(--red);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar a {
    color: var(--gray-mid);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.3s;
}

.topbar a:hover {
    color: var(--accent);
}

.topbar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar .hours {
    color: var(--accent);
    font-weight: 600;
}

/* ─── HEADER / NAV ─── */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.logo-text {
    line-height: 1.1;
}

.logo-text .brand {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

.logo-text .tagline {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    padding: 8px 14px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a:hover {
    color: var(--red);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-phone {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

.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 ─── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 2000;
    padding: 80px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    flex-direction: column;
    gap: 6px;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
    display: block;
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.4s;
}

.nav-overlay.visible {
    opacity: 1;
}

/* ─── HERO BANNER ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition:
        opacity 1.2s ease,
        transform 8s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(20, 14, 10, 0.82) 0%,
            rgba(20, 14, 10, 0.45) 55%,
            rgba(20, 14, 10, 0.2) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-inner {
    max-width: 760px;
    padding: 0 24px;
    margin-left: max(5vw, 24px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    padding: 8px 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: slideInLeft 0.8s ease 0.3s both;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 24px;
    animation: slideInLeft 0.8s ease 0.5s both;
}

.hero-title .highlight {
    color: var(--accent);
    display: block;
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
    animation: slideInLeft 0.8s ease 0.7s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease 0.9s both;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 14, 10, 0.85);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--red);
    z-index: 10;
    padding: 0 24px;
}

.hero-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat .num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 6px;
    display: block;
}

/* Hero slider controls */
.hero-controls {
    position: absolute;
    bottom: 120px;
    right: 40px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.hero-arrows {
    position: absolute;
    bottom: 130px;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 40px;
}

.hero-arr {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arr:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ─── ABOUT US ─── */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "FINESSE";
    position: absolute;
    top: -20px;
    right: -40px;
    font-family: "Playfair Display", serif;
    font-size: 200px;
    font-weight: 900;
    color: var(--gray-light);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow);
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--red);
    color: white;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge .num {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.about-badge .txt {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.about-content {
    padding-right: 20px;
}

.about-features {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--off-white);
    transition: var(--transition);
}

.about-feat:hover {
    background: var(--red);
}

.about-feat:hover .af-icon {
    background: white;
    color: var(--red);
}

.about-feat:hover .af-title {
    color: white;
}

.about-feat:hover .af-sub {
    color: rgba(255, 255, 255, 0.8);
}

.af-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.af-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--charcoal);
    transition: var(--transition);
}

.af-sub {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
    transition: var(--transition);
}

.abn-block {
    margin-top: 30px;
    padding: 18px 24px;
    background: var(--charcoal);
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.abn-block strong {
    color: var(--accent);
    font-size: 15px;
}

/* ─── SERVICES / WHAT WE DO ─── */
.services {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
            var(--red),
            var(--accent),
            var(--red));
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header .section-title {
    color: var(--white);
}

.services-header .section-sub {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(20, 10, 5, 0.92) 0%,
            rgba(20, 10, 5, 0.3) 50%,
            transparent 100%);
    transition: var(--transition);
}

.service-card:hover::after {
    background: linear-gradient(0deg,
            rgba(200, 16, 46, 0.88) 0%,
            rgba(200, 16, 46, 0.5) 50%,
            rgba(20, 10, 5, 0.2) 100%);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.service-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-name {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.4s ease;
    opacity: 0;
}

.service-card:hover .service-desc {
    max-height: 120px;
    opacity: 1;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── WHY CHOOSE US ─── */
.why {
    padding: 120px 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-img-wrap {
    position: relative;
}

.why-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.why-img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 6px solid var(--white);
}

.why-img-overlay .big {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.why-img-overlay .small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.why-reasons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    border-left: 4px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-item:hover {
    border-left-color: var(--red);
    transform: translateX(6px);
}

.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-text h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.why-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

/* ─── PROCESS ─── */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--accent));
}

.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .step-num {
    background: var(--red);
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

/* ─── GALLERY ─── */
.gallery {
    padding: 120px 0;
    background: var(--charcoal);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header .section-title {
    color: white;
}

.gallery-header .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 16, 46, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    gap: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -60px;
    left: 40px;
    font-size: 500px;
    font-family: "Playfair Display", serif;
    color: rgba(200, 16, 46, 0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testi-slider {
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testi-inner {
    max-width: 900px;
    margin: 0 auto;
}

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

.testi-card {
    background: white;
    padding: 32px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.testi-card:hover {
    border-bottom-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testi-card::before {
    content: '"';
    font-family: "Playfair Display", serif;
    font-size: 72px;
    color: var(--red);
    opacity: 0.15;
    line-height: 0.7;
    display: block;
    margin-bottom: 10px;
}

.testi-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.testi-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
}

.testi-loc {
    font-size: 12px;
    color: #999;
}

.testi-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-mid);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--red);
    width: 28px;
    border-radius: 4px;
}

/* ─── QUOTE CTA ─── */
.quote-cta {
    padding: 100px 0;
    background: var(--red);
    position: relative;
    overflow: hidden;
}

.quote-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.quote-inner .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.quote-inner .section-title {
    color: white;
}

.quote-inner .section-sub {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 48px;
}

.quote-form {
    background: white;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.quote-form h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 30px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--gray-mid);
    background: var(--off-white);
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ─── FAQ ─── */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    transition: var(--transition);
    gap: 16px;
}

.faq-q:hover {
    color: var(--red);
}

.faq-item.open .faq-q {
    background: var(--red);
    color: white;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    transition: var(--transition);
    color: var(--charcoal);
}

.faq-item.open .faq-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a-inner {
    padding: 18px 24px;
}

.faq-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.faq-contact {
    margin-top: 30px;
    background: var(--charcoal);
    padding: 30px;
    color: white;
}

.faq-contact h4 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.faq-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ─── FEATURES ─── */
.features {
    padding: 120px 0;
    background: var(--charcoal);
}

.features-header {
    text-align: center;
    margin-bottom: 70px;
}

.features-header .section-title {
    color: white;
}

.features-header .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 48px 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    background: rgba(200, 16, 46, 0.08);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
}

.feature-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 14px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

/* ─── COVERAGE BAND ─── */
.coverage {
    padding: 70px 0;
    background: linear-gradient(135deg,
            var(--red) 0%,
            var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.coverage-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.coverage-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.coverage-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.coverage-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cov-item {
    text-align: center;
    color: white;
}

.cov-item .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.cov-item .val {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cov-item .lab {
    font-size: 12px;
    opacity: 0.75;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── CALL US ─── */
.contact-section {
    padding: 120px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {}

.contact-cards {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(6px);
}

.contact-card:hover .cc-icon {
    background: var(--red-dark);
}

.cc-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.cc-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
}

.cc-val {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
}

.cc-sub {
    font-size: 13px;
    color: #999;
    margin-top: 3px;
}

.contact-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
}

.contact-img-wrap {
    position: relative;
}

.contact-img-wrap::after {
    content: "";
    position: absolute;
    top: 24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--red);
    z-index: -1;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.hour-item {
    padding: 14px 18px;
    background: var(--off-white);
    border-left: 3px solid var(--red);
    font-size: 13px;
}

.hour-day {
    font-weight: 700;
    color: var(--charcoal);
}

.hour-time {
    color: #888;
    margin-top: 2px;
}

/* ─── FOOTER ─── */
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .fi {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
}

.footer-logo .fn {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 900;
    color: white;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.footer-col h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-col ul a::before {
    content: "›";
    color: var(--red);
    font-size: 16px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.abn-footer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ─── FLOATING CALL BTN ─── */
.float-call {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.45);
    text-decoration: none;
    animation: pulse 2.5s infinite;
    transition: transform 0.3s;
}

.float-call:hover {
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(200, 16, 46, 0.45);
    }

    50% {
        box-shadow:
            0 8px 50px rgba(200, 16, 46, 0.7),
            0 0 0 12px rgba(200, 16, 46, 0.08);
    }
}

/* ─── KEYFRAMES ─── */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ─── BACK TO TOP ─── */
.back-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--charcoal);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--red);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .topbar-right {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .why-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-img-accent {
        display: none;
    }

    .about-badge {
        left: 0;
    }

    .about-content {
        padding-right: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }

    .testi-cards {
        grid-template-columns: 1fr;
    }

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

    .process-steps::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .quote-form {
        padding: 28px;
    }

    .contact-img-wrap::after {
        display: none;
    }

    .coverage-inner {
        flex-direction: column;
        gap: 30px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}