
/* =========================
   CORE / VARIABLES
========================== */
:root {
    --st-red: #ff0018;
    --dark-red: #8a0000;
    --carbon: #0a0a0a;
    --gray-text: #888;
    --neon-glow: 0 0 15px rgba(255, 0, 24, 0.6);

    --border: 1px solid rgba(255,255,255,0.10);
    --border-strong: 1px solid rgba(255,255,255,0.16);

    /* FULL WIDTH + SAFE PADDING */
    --pad-x: clamp(16px, 4vw, 90px);
    --section-pad: clamp(70px, 9vw, 120px);
    --card-pad: clamp(18px, 3vw, 34px);

    --radius: 16px;
}

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

@media (hover: none) {
    * {
        cursor: default;
    }
}

body {
    background: #000;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    line-height: 1.35;
}

h1, h2, h3, h4 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
}

a, button, input, select {
    -webkit-tap-highlight-color: transparent;
}

/* =========================
   BACKGROUND VIDEO + OVERLAY
========================== */
.video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: grayscale(100%) contrast(110%) brightness(40%);
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.92), transparent 50%, #000 95%),
        radial-gradient(circle at center, transparent 0%, #000 120%);
    background-size: 3px 3px;
    background-image: radial-gradient(rgba(255, 0, 24, 0.05) 1px, transparent 1px);
}

/* =========================
   BUTTONS
========================== */
.btn-nitro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 50px;
    background: transparent;
    border: 2px solid var(--st-red);
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.25s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    min-height: 52px;
    user-select: none;
}

.btn-nitro:hover {
    background: var(--st-red);
    box-shadow: var(--neon-glow);
    text-shadow: 0 0 5px #fff;
    transform: translateY(-1px);
}

/* =========================
   HEADER
========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.65) 50%, transparent 100%);
    backdrop-filter: blur(7px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px var(--pad-x);
}

.logo {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    white-space: nowrap;
}

.logo span {
    color: var(--st-red);
    font-size: clamp(1.95rem, 3vw, 3rem);
    font-style: italic;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    border: var(--border);
    padding: 10px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
    user-select: none;
    min-height: 44px;
}

.header-cta a i {
    color: var(--st-red);
}

.header-cta a:hover {
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-1px);
}

/* =========================
   HERO
========================== */
.hero {
    min-height: 100svh; /* mobile fix */
    display: flex;
    align-items: center;
    padding: 0 var(--pad-x);
    padding-top: clamp(95px, 12vh, 140px); /* space for fixed header */
    padding-bottom: clamp(60px, 10vh, 100px);
}

.hero h1 {
    font-size: clamp(2.3rem, 6vw, 6.8rem);
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 5.2rem);
    letter-spacing: 0.5px;
}

.hero h1 span {
    display: block;
    color: var(--st-red);
    font-size: clamp(1.5rem, 3vw, 4rem);
    letter-spacing: clamp(1px, 1.2vw, 6px);
    margin-top: 10px;
}

.hero-desc {
    max-width: 760px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #ccc;
    margin-bottom: 26px;
    border-left: 5px solid var(--st-red);
    padding-left: clamp(14px, 2vw, 22px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 8px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 2.5vw, 30px);
    margin-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 20px;
    max-width: 900px;
}

.hero-stat {
    flex: 1 1 150px;
    min-width: 150px;
}

.hero-stat div {
    font-family: 'Teko', sans-serif;
    font-size: clamp(1.7rem, 2.7vw, 2.2rem);
    color: var(--st-red);
    line-height: 1;
}

.hero-stat p {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 6px;
}

/* =========================
   MARQUEE STRIP
========================== */

.marquee-strip{
    background: var(--st-red);
    color: #000;
    padding: 10px 0;
    font-family: 'Teko', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 700;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.02);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin: 60px 0;
    z-index: 5;
}

.marquee-track{
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee-content{
    white-space: nowrap;
    padding-right: 50px; /* odstęp między pętlami */
}

@keyframes marquee{
    0%   {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   SECTIONS FULL WIDTH
========================== */
section {
    width: 100%;
}

.section-pad {
    padding: var(--section-pad) var(--pad-x);
}

.section-title {
    font-size: clamp(2.0rem, 4vw, 3.2rem);
    margin-bottom: 10px;
}

.section-sub {
    color: var(--gray-text);
    font-size: 1rem;
    margin-bottom: 40px;
}

/* =========================
  SERVICES PRO GRID (FULL WIDTH, CENTERED, EVEN)
========================= */

.services-section{
    background: #080808;
    border-top: 1px solid #222;
    position: relative;
}

.services-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,0,24,0.12), transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(255,0,24,0.08), transparent 45%),
        radial-gradient(circle at 30% 90%, rgba(255,255,255,0.03), transparent 55%);
    pointer-events:none;
    opacity: 0.9;
}

.services-head{
    position: relative;
    z-index: 2;
    text-align:center;
    margin-bottom: clamp(28px, 4vw, 55px);
}

.services-grid{
    position: relative;
    z-index: 2;

    /* MAGIC: zawsze równo + pełna szerokość */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(14px, 2.3vw, 26px);

    /* żeby wyglądało równo i premium */
    align-items: stretch;
    justify-items: stretch;
}

/* CARD */
.service-card{
    background: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.75));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.55);

    display: flex;
    flex-direction: column;
    min-height: 360px; /* żeby równo wyglądało */
}

.service-card::after{
    content:"";
    position:absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--st-red);
    transition: 0.25s ease;
}

.service-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 18px 48px rgba(0,0,0,0.85);
}

.service-card:hover::after{
    width: 100%;
}

/* IMAGE COVER */
.service-cover {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) contrast(115%) brightness(0.75);
    transform: scale(1.05);
    transition: 0.35s ease;
}

.service-card:hover .service-cover img{
    filter: grayscale(15%) contrast(115%) brightness(0.9);
    transform: scale(1.12);
}

.service-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.15)),
        radial-gradient(circle at 20% 10%, rgba(255,0,24,0.18), transparent 55%);
}

/* CONTENT */
.service-body{
    padding: clamp(18px, 2.3vw, 26px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.service-topline{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgb(255 0 24 / 0%);
    border: 1px solid rgb(0 0 0 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.service-icon i {
    color: #919090;
    font-size: 1.3rem;
    text-shadow: none;
}

.service-tag{
    font-family: 'Teko', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.service-card h3{
    font-size: clamp(1.55rem, 2.2vw, 1.9rem);
    line-height: 1;
    margin-top: 2px;
}

.service-card p{
    color: #9a9a9a;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 52ch;
}

/* CTA inside card (optional) */
.service-cta{
    margin-top: auto;
    display:flex;
    gap: 10px;
    align-items:center;
    padding-top: 12px;
}

.service-cta a {
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 4px solid rgb(255 0 0 / 12%);
    background: rgb(41 0 0 / 67%);
    transition: 0.2s ease;
    width: -webkit-fill-available;
    font-size: 1.5rem;
    cursor: pointer;
}

.service-cta a:hover{
    border-color: rgba(255,0,24,0.35);
    background: rgba(255,0,24,0.10);
}

/* Responsive polish */
@media (max-width: 520px){
    .service-card{
        min-height: 0;
    }
    .service-cover{
        height: 200px;
    }
    .service-card p{
        max-width: 100%;
    }
}


/* =========================
   GALLERY
========================== */
.gallery-section {
    background: #050505;
    border-top: 1px solid #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(14px, 2vw, 18px);
    margin-top: 30px;
}

.gallery-item {
    height: clamp(220px, 30vw, 320px);
    border: 1px solid #222;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
    color: var(--st-red);
    font-family: 'Teko';
    font-size: 1.5rem;
    transform: translateY(100%);
    transition: 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* =========================
   SPECS
========================== */
.specs-section {
    background: #0a0a0a;
    border-top: 1px solid #222;
}

.specs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(26px, 5vw, 60px);
    align-items: center;
}

.specs-text h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.9;
}

.specs-text p {
    color: var(--gray-text);
    margin-top: 18px;
    max-width: 520px;
    line-height: 1.7;
}

.specs-table {
    background: rgba(0,0,0,0.35);
    border: var(--border);
    border-radius: var(--radius);
    padding: clamp(16px, 2.5vw, 26px);
}

.tech-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    align-items: baseline;
}

.tech-row:last-child {
    border-bottom: none;
}

.tech-row:hover {
    border-bottom-color: rgba(255,0,24,0.35);
}

.tech-label {
    color: #666;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.tech-value {
    font-family: 'Teko';
    font-size: clamp(1.25rem, 2.3vw, 1.8rem);
    text-align: right;
}

/* =========================
   ONBOARD
========================== */
.onboard-section {
    background: #0a0a0a;
    border-top: 1px solid #222;
}

.onboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: clamp(12px, 2vw, 20px);
    margin-top: 34px;
}

.system-item {
    text-align: center;
    padding: clamp(16px, 2.5vw, 22px);
    border: 1px solid #222;
    background: #000;
    border-radius: var(--radius);
    transition: 0.25s ease;
}

.system-item i {
    font-size: 2rem;
    color: #444;
    margin-bottom: 12px;
    transition: 0.25s ease;
}

.system-item:hover i {
    color: var(--st-red);
    text-shadow: 0 0 10px rgba(255,0,24,0.6);
}

.system-item span {
    display: block;
    font-family: 'Teko';
    font-size: 1.25rem;
    text-transform: uppercase;
}

/* =========================
   INTEL
========================== */
.intel-section {
    background: #000;
    border-top: 1px solid #111;
}

.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 2.8vw, 30px);
    margin-top: 40px;
}

.intel-card {
    background: #080808;
    border: 1px solid #1a1a1a;
    padding: var(--card-pad);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.intel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 2px;
    background: var(--st-red);
}

.intel-card h3 {
    font-size: 1.85rem;
    margin-bottom: 14px;
}

.intel-card p {
    color: #888;
    line-height: 1.65;
    font-size: 0.98rem;
}

/* =========================
   PARALLAX QUOTE
========================== */
.parallax-quote {
    padding: clamp(90px, 14vw, 160px) var(--pad-x);
    background:
        linear-gradient(rgba(0,0,0,0.84), rgba(0,0,0,0.84)),
        url('./app/resources/images/auto/focus_st_front_b.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 2px solid var(--st-red);
    border-bottom: 2px solid var(--st-red);
}

.parallax-quote h2 {
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    text-shadow: 0 0 18px #000;
    line-height: 1.05;
}

/* =========================
   REVIEWS
========================== */
.street-cred {
    background: #050505;
    border-top: 1px solid #222;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 2.8vw, 30px);
    margin-top: 40px;
}

.review-card {
    background: #111;
    padding: var(--card-pad);
    border-left: 2px solid #333;
    border-radius: var(--radius);
    transition: 0.25s ease;
}

.review-card:hover {
    border-left-color: var(--st-red);
    background: #151515;
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: #666;
}

.review-stars {
    color: var(--st-red);
}

.review-text {
    font-style: italic;
    color: #ccc;
    font-family: 'Montserrat';
    line-height: 1.6;
}

.review-author {
    margin-top: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Teko';
    font-size: 1.2rem;
}

/* =========================
   COCKPIT / FORM
========================== */
.cockpit-section {
    background: radial-gradient(circle at center, #1a0003 0%, #000 70%);
    border-top: 1px solid #111;
    text-align: center;
}

.dashboard {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.92);
    border: 2px solid #333;
    padding: clamp(18px, 4vw, 50px);
    clip-path: polygon(5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%, 0 5%);
    box-shadow: 0 0 50px rgba(0,0,0,0.55);
    position: relative;
}

.dashboard::before {
    content: 'SYSTEM READY';
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--st-red);
    font-size: 0.72rem;
    animation: blink 2s infinite;
    opacity: 0.9;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
    text-align: left;
}

label {
    display: block;
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 6px;
}

input, select {
    width: 100%;
    background: #050505;
    border: 1px solid #333;
    color: #fff;
    padding: 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    border-radius: 12px;
    min-height: 54px;
    outline: none;
}

input:focus, select:focus {
    border-color: var(--st-red);
    background: #0a0000;
}

/* =========================
   FOOTER
========================== */
/* =========================
   FOOTER PREMIUM + SOCIAL
========================= */

.footer{
    background: #050505;
    border-top: 2px solid var(--st-red);
    padding: 55px var(--pad-x) 35px;
}

.footer-top{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: clamp(20px, 3vw, 50px);
    align-items: start;
}

.footer-logo{
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer-desc{
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 52ch;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-nav h4,
.footer-contact h4{
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a{
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: 0.2s ease;
    padding: 6px 0;
}

.footer-links a:hover{
    color: #fff;
    text-shadow: 0 0 10px rgba(255,0,24,0.25);
    transform: translateX(2px);
}

/* CONTACT LIST */
.footer-contact-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-list a{
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
    padding: 6px 0;
}

.footer-contact-list a i{
    color: var(--st-red);
    opacity: 0.9;
}

.footer-contact-list a:hover{
    color: #fff;
    transform: translateX(2px);
}

/* SOCIAL */
.footer-social{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-label{
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
}

.footer-social-icons{
    display: flex;
    gap: 12px;
}

.social-btn{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.social-btn i{
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.9;
}

/* glow line */
.social-btn::after{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 30% 20%, rgba(255,0,24,0.22), transparent 55%);
    opacity: 0;
    transition: 0.25s ease;
}

.social-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(255,0,24,0.35);
    box-shadow: 0 0 18px rgba(255,0,24,0.25);
}

.social-btn:hover::after{
    opacity: 1;
}

/* subtle variant colors */
.social-btn.ig:hover{
    border-color: rgba(255,0,24,0.55);
}

.social-btn.tt:hover{
    border-color: rgba(255,255,255,0.25);
}

/* FOOTER BOTTOM */
.footer-bottom{
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.legal-note{
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
}

/* Responsive */
@media(max-width: 900px){
    .footer-top{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc{
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social-icons{
        justify-content: center;
    }

    .footer-links,
    .footer-contact-list{
        align-items: center;
    }
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {
    .specs-wrap {
        grid-template-columns: 1fr;
    }
    .input-grid {
        grid-template-columns: 1fr;
    }
    .marquee-strip {
        transform: rotate(-1.5deg) scale(1.02);
    }
    .tech-value {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .hero-actions .btn-nitro {
        width: 100%;
    }
    .header-cta a {
        padding: 10px 12px;
    }
    .hero-stat {
        min-width: 0;
        flex: 1 1 140px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
    }
    .service-card, .gallery-item img {
        transition: none;
    }
}
