/* ============================================================
   Auto Servis Bekan - Glavni Stylesheet
   Barlow Condensed (display) + Barlow (body)
   ============================================================ */

/* -- Reset & Base -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    transition: background-color .3s, color .3s;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; transition: color .2s, opacity .2s; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* -- CSS Tokens -- */
:root {
    --clr-red:         #C0392B;
    --clr-red-dark:    #922B21;
    --clr-red-light:   #E74C3C;
    --clr-red-muted:   rgba(192,57,43,.10);

    --clr-bg:          #F7F7F5;
    --clr-bg-card:     #FFFFFF;
    --clr-bg-alt:      #EFEFEB;
    --clr-text:        #1A1A1A;
    --clr-text-muted:  #666666;
    --clr-border:      rgba(0,0,0,.09);
    --clr-header-bg:   #FFFFFF;
    --clr-topbar-bg:   #141414;
    --clr-topbar-text: rgba(255,255,255,.75);
    --clr-footer-bg:   #111111;
    --clr-footer-text: rgba(255,255,255,.65);

    --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
    --shadow-md:  0 8px 30px rgba(0,0,0,.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.14);
    --shadow-red: 0 8px 30px rgba(192,57,43,.28);

    --container: 1240px;
    --radius:    8px;
    --radius-lg: 16px;
    --gap:       2rem;

    --fs-xs:   .75rem;
    --fs-sm:   .875rem;
    --fs-base: 1rem;
    --fs-lg:   1.125rem;
    --fs-xl:   1.375rem;
    --fs-2xl:  1.75rem;
    --fs-3xl:  2.25rem;
    --fs-4xl:  3rem;
    --fs-hero: clamp(2.8rem, 6.5vw, 5.5rem);

    --ease: cubic-bezier(.4,0,.2,1);
    --dur:  .25s;
}

[data-theme="dark"] {
    --clr-bg:          #111111;
    --clr-bg-card:     #1C1C1C;
    --clr-bg-alt:      #171717;
    --clr-text:        #F0F0EE;
    --clr-text-muted:  #909090;
    --clr-border:      rgba(255,255,255,.08);
    --clr-header-bg:   #161616;
    --clr-topbar-bg:   #090909;
    --clr-footer-bg:   #090909;
    --shadow-sm:  0 2px 8px rgba(0,0,0,.35);
    --shadow-md:  0 8px 30px rgba(0,0,0,.45);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.55);
}

/* -- Container -- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* -- Typography -- */
h1,h2,h3,h4,h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--clr-text);
    letter-spacing: -.01em;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--clr-red);
    display: block;
    margin-bottom: .5rem;
}
.section-title {
    font-size: var(--fs-3xl);
    color: var(--clr-text);
    margin-bottom: .75rem;
    line-height: 1.15;
}
.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-text-muted);
    max-width: 600px;
    line-height: 1.6;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .section-subtitle { margin-inline: auto; }

/* -- Buttons -- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-lg);
    letter-spacing: .04em;
    padding: .875rem 2rem;
    border-radius: var(--radius);
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}
.btn--primary {
    background: var(--clr-red);
    color: #fff !important;
    box-shadow: var(--shadow-red);
    border: 2px solid var(--clr-red);
}
.btn--primary:hover {
    background: var(--clr-red-dark);
    border-color: var(--clr-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(192,57,43,.38);
}
.btn--outline {
    border: 2px solid var(--clr-text);
    color: var(--clr-text) !important;
    background: transparent;
}
.btn--outline:hover {
    background: var(--clr-text);
    color: var(--clr-bg) !important;
    transform: translateY(-2px);
}
[data-theme="dark"] .btn--outline-light {
    border: 2px solid rgba(255,255,255,.55);
    color: #fff !important;
    background: transparent;
}

[data-theme="dark"] .btn--outline-light:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}


/* LIGHT */

[data-theme="light"] .btn--outline-light {
    border: 2px solid rgba(0,0,0,.45);
    color: #1a1a1a !important;
    background: transparent;
}

[data-theme="light"] .btn--outline-light:hover {
    background: rgba(0,0,0,.08);
    border-color: #000;
}
.btn--sm  { padding: .5rem 1.2rem; font-size: var(--fs-base); }
.btn--lg  { padding: 1rem 2.4rem;  font-size: var(--fs-xl); }

/* -- Topbar -- */
.topbar {
    background: var(--clr-topbar-bg);
    color: var(--clr-topbar-text);
    font-size: var(--fs-sm);
    padding: .45rem 0;
    position: relative;
    z-index: 1000;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar__left, .topbar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.topbar__left a, .topbar__right a {
    color: var(--clr-topbar-text);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.topbar__left a:hover, .topbar__right a:hover { color: var(--clr-red-light); }
.topbar__hours { display: flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); }

.lang-switch {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-xs);
    letter-spacing: .1em;
    padding: .2rem .55rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    color: rgba(255,255,255,.75) !important;
    transition: all .2s;
}
.lang-switch:hover { background: var(--clr-red); border-color: var(--clr-red); color: #fff !important; }

.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    transition: all .2s;
}
.theme-btn:hover { background: var(--clr-red); border-color: var(--clr-red); }
[data-theme="light"] #icon-dark  { display: none; }
[data-theme="dark"]  #icon-light { display: none; }

/* -- Site Header -- */
.site-header {
    background: var(--clr-header-bg);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 70px;
}

/* Logo Placeholder */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: .7rem;
}
.logo-placeholder__icon {
    width: 42px; height: 42px;
    background: var(--clr-red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.logo-placeholder--footer .logo-placeholder__icon { width: 36px; height: 36px; font-size: 1rem; }
.logo-placeholder__name {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--clr-text);
    line-height: 1.1;
}
.logo-placeholder__sub {
    display: block;
    font-size: .65rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--clr-red);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Main Nav */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: .15rem;
}
.main-nav__list a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: var(--fs-lg);
    letter-spacing: .03em;
    color: var(--clr-text);
    padding: .45rem .75rem;
    border-radius: 6px;
    position: relative;
    display: block;
}
.main-nav__list a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: .75rem; right: .75rem;
    height: 2px;
    background: var(--clr-red);
    transform: scaleX(0);
    transition: transform .25s var(--ease);
    border-radius: 2px;
}
.main-nav__list a:hover::after,
.main-nav__list a.active::after { transform: scaleX(1); }
.main-nav__list a:hover { color: var(--clr-red); }
.main-nav__list a.active { color: var(--clr-red); }

.header__actions { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all .3s var(--ease);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 850;
    opacity: 0;
    transition: opacity .3s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* -- HERO SLIDER -- */
.hero-slider {
    position: relative;
    height: clamp(460px, 88vh, 780px);
    overflow: hidden;
    background: #1a1a1a;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .9s var(--ease);
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
[data-theme="dark"] .slide-1 .slide-bg { 
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1a19 55%, #1a0e0e 100%);
}

[data-theme="dark"] .slide-2 .slide-bg { 
    background: linear-gradient(135deg, #0e1520 0%, #1a2030 55%, #12181f 100%);
}

[data-theme="dark"] .slide-3 .slide-bg { 
    background: linear-gradient(135deg, #1a1208 0%, #221a10 55%, #141210 100%);
}

[data-theme="light"] .slide-1 .slide-bg { 
    background: linear-gradient(135deg, #d6d6d6 0%, #c7a4a1 55%, #b99797 100%);
}

[data-theme="light"] .slide-2 .slide-bg { 
    background: linear-gradient(135deg, #cfd6de 0%, #b6c5d8 55%, #aab8cc 100%);
}

[data-theme="light"] .slide-3 .slide-bg { 
    background: linear-gradient(135deg, #d8d2c8 0%, #c6b79f 55%, #b8aa93 100%);
}


.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 75% 50%, rgba(192,57,43,.15) 0%, transparent 55%);
}

.slide-accent {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--clr-red);
    z-index: 2;
}

.slide__content {
    position: relative;
    z-index: 3;
    padding: 0 clamp(1rem, 6vw, 5rem);
    max-width: 800px;
}
.slide.active .slide__content {
    animation: slideUp .65s .15s var(--ease) both;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(192,57,43,.88);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .38rem .9rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}
.slide__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--fs-hero);
    font-weight: 800;
    line-height: 1;
    margin-bottom: .9rem;
    text-transform: uppercase;
    letter-spacing: -.02em;
}
[data-theme="dark"] .slide__title { 
    color: #fff; 
}

[data-theme="light"] .slide__title { 
    color: #1a1a1a; 
}
.slide__title span { color: var(--clr-red-light); }
.slide__subtitle {
    font-size: var(--fs-xl);
    font-weight: 300;
    margin-bottom: 2.25rem;
    max-width: 500px;
}
[data-theme="dark"] .slide__subtitle { 
    color: rgba(255,255,255,.72);
}

[data-theme="light"] .slide__subtitle { 
    color: rgba(0,0,0,.72);
}
.slide__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px; height: 46px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: all .2s;
    cursor: pointer;
}
.slider-arrow:hover { background: var(--clr-red); border-color: var(--clr-red); }
.slider-arrow--prev { left: 1.25rem; }
.slider-arrow--next { right: 1.25rem; }

.slider-controls {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.slider-dots { display: flex; gap: .45rem; align-items: center; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}
.slider-dot.active {
    background: var(--clr-red);
    width: 26px;
    border-radius: 4px;
}

.slider-scroll {
    position: absolute;
    bottom: 1.75rem; right: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.35);
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.slider-scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.35} 50%{opacity:.9} }

/* -- Stat Bar -- */
.stat-bar {
    background: var(--clr-bg-card);
    border-bottom: 3px solid var(--clr-border);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}
.stat-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stat-item {
    padding: .75rem 1rem;
    text-align: center;
}
.stat-item__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--clr-red);
    line-height: 1;
    display: block;
}
.stat-item__label {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-top: .3rem;
    display: block;
}
.stat-bar__grid .stat-item:not(:last-child) {
    border-right: 1px solid var(--clr-border);
}

/* -- Section Spacing -- */
.section { padding: 5rem 0; }
.section--alt { background: var(--clr-bg-alt); }

/* -- Services Grid -- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--clr-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
    width: 54px; height: 54px;
    background: var(--clr-red-muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-red);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    transition: all .3s;
}
.service-card:hover .service-card__icon { background: var(--clr-red); color: #fff; }
.service-card__title { font-size: var(--fs-xl); margin-bottom: .5rem; }
.service-card__desc {
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}
.service-card__link {
    color: var(--clr-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-base);
    letter-spacing: .03em;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: auto;
}
.service-card__link i { transition: transform .2s; }
.service-card:hover .service-card__link i { transform: translateX(4px); }

/* -- About Section -- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-bg-alt);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: var(--clr-text-muted);
    padding: 2rem;
    text-align: center;
    width: 100%;
}
.about-img-placeholder i { font-size: 2.5rem; color: var(--clr-red); opacity: .4; }
.about-img-placeholder span { font-size: var(--fs-sm); line-height: 1.6; }
.about-badge {
    position: absolute;
    bottom: -1.25rem; right: -1.25rem;
    background: var(--clr-red);
    color: #fff;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-red);
    text-align: center;
    min-width: 110px;
}
.about-badge__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    display: block;
}
.about-badge__text { font-size: var(--fs-xs); opacity: .9; margin-top: .25rem; display: block; }

.about-content { padding: .5rem 0; }
.about-content p { color: var(--clr-text-muted); margin-bottom: 1.2rem; line-height: 1.7; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-top: 1.75rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .7rem .9rem;
    background: var(--clr-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    transition: all .2s;
}
.about-feature:hover { border-color: var(--clr-red); background: var(--clr-red-muted); }
.about-feature i { color: var(--clr-red); font-size: .95rem; flex-shrink: 0; margin-top: 3px; }
.about-feature span { font-size: var(--fs-sm); font-weight: 500; line-height: 1.4; }

/* -- Prices Table -- */
.prices-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.prices-table thead th {
    background: var(--clr-topbar-bg);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-lg);
    letter-spacing: .04em;
    padding: 1.1rem 1.4rem;
    text-align: left;
}
.prices-table thead th:last-child { text-align: right; }
.prices-table tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background .2s;
}
.prices-table tbody tr:last-child { border-bottom: none; }
.prices-table tbody tr:hover { background: var(--clr-red-muted); }
.prices-table td { padding: 1.1rem 1.4rem; color: var(--clr-text); vertical-align: top; }
.prices-table td:last-child { text-align: right; }
.prices-table .td-service {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-lg);
}
.prices-table .td-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.price-range, .price-fixed {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-xl);
    color: var(--clr-red);
    white-space: nowrap;
}
.price-free {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-xl);
    color: #27ae60;
}
.price-request {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: var(--fs-lg);
    color: var(--clr-text-muted);
}
.prices-note {
    margin-top: 1.5rem;
    padding: 1rem 1.4rem;
    background: var(--clr-bg-alt);
    border-left: 3px solid var(--clr-red);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* -- Gallery Grid -- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--clr-bg-alt);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: var(--fs-lg); }
.gallery-placeholder {
    aspect-ratio: 4/3;
    background: var(--clr-bg-alt);
    border: 2px dashed var(--clr-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--clr-text-muted);
    font-size: var(--fs-xs);
    text-align: center;
    padding: 1rem;
}
.gallery-placeholder i { font-size: 1.75rem; opacity: .3; }

/* -- CTA Banner -- */
[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #141414 0%, #2c1a19 100%);
}

[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #d4d4d4 0%, #c2a09c 100%);
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(192,57,43,.2) 0%, transparent 55%),
                      radial-gradient(circle at 80% 30%, rgba(192,57,43,.1) 0%, transparent 45%);
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 1rem; }
.cta-section h2 span { color: var(--clr-red-light); }
.cta-section p { color: rgba(255,255,255,.65); font-size: var(--fs-lg); margin-bottom: 2.5rem; max-width: 550px; margin-inline: auto; margin-bottom: 2.5rem; }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -- Contact Section -- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    transition: all .2s;
}
.contact-info-item:hover { border-color: var(--clr-red); }
.contact-info-item i {
    width: 38px; height: 38px;
    background: var(--clr-red-muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-red);
    font-size: .95rem;
    flex-shrink: 0;
}
.contact-info-item__text strong { display: block; font-size: var(--fs-xs); color: var(--clr-text-muted); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-item__text a,
.contact-info-item__text span { color: var(--clr-text); font-weight: 500; font-size: var(--fs-sm); line-height: 1.6; }
.contact-info-item__text a:hover { color: var(--clr-red); }

/* Form */
.contact-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.form-group label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: .7rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Barlow', sans-serif;
    font-size: var(--fs-base);
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-red);
    box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea { min-height: 110px; }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin-top: 1.5rem;
    height: 280px;
    background: var(--clr-bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .75rem; color: var(--clr-text-muted);
}
.map-placeholder i { font-size: 2.25rem; color: var(--clr-red); opacity: .45; }

/* -- Page Hero (inner pages) -- */
[data-theme="dark"] .page-hero {
    background: linear-gradient(135deg, #141414, #2c1a19);
}

[data-theme="light"] .page-hero {
    background: linear-gradient(135deg, #d4d4d4, #c2a09c);
}

.page-hero {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(192,57,43,.18) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title span { color: var(--clr-red-light); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .2rem .45rem; align-items: center; margin-top: .5rem; }
.breadcrumb li { font-size: var(--fs-sm); color: rgba(255,255,255,.45); }
.breadcrumb li a { color: rgba(255,255,255,.55); }
.breadcrumb li a:hover { color: var(--clr-red-light); }
.breadcrumb li.current { color: rgba(255,255,255,.9); }
.breadcrumb li:not(:first-child)::before { content: '/'; margin-right: .45rem; opacity: .35; }
[data-theme="dark"] .page-hero__title { 
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: #fff;
    margin-bottom: .4rem;
}

[data-theme="dark"] .page-hero__sub { 
    color: rgba(255,255,255,.6);
    font-size: var(--fs-lg);
    margin-bottom: .75rem;
}


/* LIGHT */

[data-theme="light"] .page-hero__title { 
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: #1a1a1a;
    margin-bottom: .4rem;
}

[data-theme="light"] .page-hero__sub { 
    color: rgba(0,0,0,.65);
    font-size: var(--fs-lg);
    margin-bottom: .75rem;
}

/* -- Footer -- */
.site-footer { background: var(--clr-footer-bg); }
.footer__top { padding: 4rem 0 3rem; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.footer__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: var(--fs-xl);
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: .7rem;
}
.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--clr-red);
}
.footer__tagline { color: var(--clr-footer-text); font-size: var(--fs-sm); margin: .9rem 0 1.4rem; line-height: 1.65; }
.footer__social { display: flex; gap: .65rem; }
.footer__social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    transition: all .2s;
}
.footer__social a:hover { background: var(--clr-red); border-color: var(--clr-red); color: #fff; }
.footer__links li { margin-bottom: .45rem; }
.footer__links a {
    color: var(--clr-footer-text);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: all .2s;
    padding: .15rem 0;
}
.footer__links a:hover { color: var(--clr-red-light); padding-left: .4rem; }
.footer__contact-info li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: .85rem;
    color: var(--clr-footer-text);
    font-size: var(--fs-sm);
}
.footer__contact-info i { color: var(--clr-red); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.footer__contact-info a { color: var(--clr-footer-text); }
.footer__contact-info a:hover { color: var(--clr-red-light); }

.footer__col { min-width: 0; }
.footer__col--brand { display: flex; flex-direction: column; }
.footer__logo { display: inline-flex; margin-bottom: .25rem; }
.footer__logo img { max-width: 160px; height: auto; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.1rem 0; }
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__bottom p { color: rgba(255,255,255,.3); font-size: var(--fs-xs); }

/* -- Back to Top -- */
.back-to-top {
    position: fixed;
    bottom: 1.75rem; right: 1.75rem;
    z-index: 800;
    width: 46px; height: 46px;
    background: var(--clr-red);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    box-shadow: var(--shadow-red);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .3s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--clr-red-dark); transform: translateY(-3px); }

/* -- Alert -- */
.alert {
    padding: .9rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: var(--fs-sm);
}
.alert--success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #27ae60; }
.alert--error   { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.3); color: var(--clr-red); }

/* -- Reveal Animation (ONLY when JS active) -- */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js-loaded .reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* -- Responsive -- */
@media (max-width: 1100px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
}

@media (max-width: 960px) {
    .services-grid      { grid-template-columns: repeat(2, 1fr); }
    .about-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid       { grid-template-columns: 1fr; }
    .form-row           { grid-template-columns: 1fr; }
    .stat-bar__grid     { grid-template-columns: repeat(2, 1fr); }
    .stat-bar__grid .stat-item:nth-child(2) { border-right: none; }
    .about-badge        { bottom: -1rem; right: -1rem; }

    /* Mobile nav */
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        bottom: 0;
        width: min(300px, 82vw);
        background: var(--clr-bg-card);
        z-index: 870;
        transition: right .35s var(--ease);
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        border-left: 1px solid var(--clr-border);
    }
    .main-nav.open { right: 0; }
    .main-nav__list { flex-direction: column; align-items: flex-start; gap: .2rem; }
    .main-nav__list a { font-size: var(--fs-2xl); padding: .55rem 0; width: 100%; border-bottom: 1px solid var(--clr-border); border-radius: 0; }
    .main-nav__list a::after { display: none; }
    .main-nav__list li:last-child a { border-bottom: none; }
}

@media (max-width: 640px) {
    .topbar__left   { display: none; }
    .services-grid  { grid-template-columns: 1fr; }
    .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer__grid   { grid-template-columns: 1fr; gap: 1.75rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-badge    { position: static; display: inline-flex; gap: 1rem; align-items: center; margin-top: 1.25rem; border-radius: var(--radius); }
    .slider-arrow   { width: 36px; height: 36px; font-size: .8rem; }
    .slider-arrow--prev { left: .75rem; }
    .slider-arrow--next { right: .75rem; }
    .slide__subtitle { font-size: var(--fs-base); }
    h2 { font-size: var(--fs-2xl); }
}

@media (max-width: 440px) {
    .gallery-grid     { grid-template-columns: 1fr; }
    .btn--lg          { padding: .85rem 1.6rem; font-size: var(--fs-lg); }
    .prices-table     { font-size: var(--fs-sm); }
    .prices-table td  { padding: .85rem 1rem; }
}

/* -- Utility -- */
.text-red    { color: var(--clr-red); }
.text-muted  { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.faq-a{
    display:none;
}

.faq-a.open{
    display:block;
}