/* ============================================
   MOTOFIXPOINT — MAIN STYLESHEET
   Brand: Dark Red #FA0505, Black #0d0d0d
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #FA0505;
    --red-light: #FF3333;
    --red-dark: #C70000;
    --accent: #FA0505;
    --black: #0d0d0d;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --grey: #333333;
    --mid: #888888;
    --light: #eeeeee;
    --white: #ffffff;
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-red: 0 4px 24px rgba(250, 5, 5, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

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

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

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

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

.section {
    padding: 96px 0;
}

.accent {
    color: var(--red-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(250, 5, 5, 0.2);
    border: 1px solid rgba(250, 5, 5, 0.5);
    color: var(--red-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-sub {
    color: var(--mid);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--accent) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(250, 5, 5, 0.6);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--red-light);
    color: var(--red-light);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(250, 5, 5, 0.3);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 85px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    margin-left: 10px;
}

.logo-fallback {
    font-family: var(--font-head);
    font-size: 2rem;
    letter-spacing: 0.05em;
    display: none;
}

.logo-moto {
    color: var(--white);
}

.logo-fix {
    color: var(--red-light);
}

.logo-point {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a.nav-active::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-light);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--red-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: 2px center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Darker overlay for better text contrast */
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.6) 50%, rgba(13, 13, 13, 0.9) 100%);
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(250, 5, 5, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 5, 5, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto; /* Removed negative margin to fix alignment collision */
    padding: 10px 40px;
    text-align: center;
}

.immediate-connect {
    margin-top: -10px; /* Pull it closer to the badge */
    margin-bottom: 30px;
    animation: fadeInUp 0.7s ease 0.5s both;
}

.connect-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    animation: fadeInUp 0.7s ease 0.6s both;
}

.connect-chip:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid var(--red);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 12px; /* Pull the WhatsApp bar even closer */
    animation: fadeInDown 0.6s ease both;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px rgba(250, 5, 5, 0.4);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 11vw, 6.5rem); /* Bolder impact */
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
    text-shadow: 2px 4px 30px rgba(0,0,0,0.9);
}

.hero-title-accent {
    color: var(--red);
    display: block;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.15rem; /* Sized down for fit */
    color: rgba(255, 255, 255, 1);
    max-width: 600px;
    margin: 0 auto 20px; /* Reduced */
    animation: fadeInUp 0.7s ease 0.2s both;
    text-shadow: 1px 2px 15px rgba(0,0,0,1);
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px; /* Reduced */
    animation: fadeInUp 0.7s ease 0.3s both;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem; /* Smaller numbers */
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}



.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--mid);
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
}

/* ===== MARQUEE ===== */
.marquee-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(250, 5, 5, 0.3);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.marquee-track span {
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--dark);
}

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

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(250, 5, 5, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

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

.service-card--full {
    grid-column: span 4;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-color: rgba(250, 5, 5, 0.2);
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-card--full:hover {
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.service-card--full .service-icon {
    margin-bottom: 0;
}

.service-card--full h3 {
    font-size: 1.3rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card--full p {
    flex: 1;
    margin-bottom: 0;
}

.service-tag {
    display: inline-block;
    background: rgba(250, 5, 5, 0.08);
    border: 1px solid rgba(250, 5, 5, 0.2);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--black);
    position: relative;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

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

.step-num {
    font-family: var(--font-head);
    font-size: 4rem;
    color: rgba(250, 5, 5, 0.15);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    margin-top: 60px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    border-left: 10px solid var(--red);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===== WHY US ===== */
.why-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    right: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 5, 5, 0.1) 0%, transparent 70%);
    z-index: 0;
}

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

.why-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(250, 5, 5, 0.3);
    box-shadow: var(--shadow);
}

.why-img-wrapper.img-fallback-dark {
    min-height: 500px;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--grey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-img-wrapper.img-fallback-dark::after {
    content: "🔧";
    font-size: 8rem;
    opacity: 0.2;
}

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

.why-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--red) 0%, var(--accent) 100%);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
}

.badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-content-col .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.why-content-col .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.why-intro {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-item-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.why-item span {
    font-size: 0.85rem;
    color: var(--mid);
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
    margin-bottom: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-item--large {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(250, 5, 5, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

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

/* Placeholder when no image */
.gallery-item.gal-placeholder {
    background: var(--dark2);
    border: 1px dashed rgba(250, 5, 5, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gal-placeholder-content {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--mid);
    font-size: 0.85rem;
}

.gallery-item.gal-placeholder .gal-placeholder-content {
    display: flex;
}

.gallery-item.gal-placeholder .gallery-overlay {
    display: none;
}

.gal-ph-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.gallery-note {
    text-align: center;
    color: var(--mid);
    font-size: 0.85rem;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* ===== BRANDS ===== */
.brands-section {
    background: var(--dark);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.brand-pill {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 999px;
    transition: var(--transition);
    cursor: default;
}

.brand-pill:hover {
    border-color: var(--red-light);
    color: var(--red-light);
    background: rgba(250, 5, 5, 0.1);
}

.brand-pill--more {
    background: linear-gradient(135deg, var(--red) 0%, var(--accent) 100%);
    border-color: transparent;
    color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--black);
}

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

.testimonial-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(250, 5, 5, 0.2);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(250, 5, 5, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.t-stars {
    color: #FFC107;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
}

.t-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
}

.t-author span {
    font-size: 0.75rem;
    color: var(--mid);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--dark);
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.contact-info .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(250, 5, 5, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--red-light);
}

/* Form */
.contact-form {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 11px auto;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark2);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-success {
    display: none;
    background: rgba(34, 139, 34, 0.15);
    border: 1px solid rgba(34, 139, 34, 0.4);
    color: #90EE90;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 16px;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
}

.footer-top {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 2rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links-col a {
    font-size: 0.875rem;
    color: var(--mid);
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: var(--red-light);
}

.footer-contact-col p {
    font-size: 0.875rem;
    color: var(--mid);
    margin-bottom: 10px;
}

.footer-contact-col a {
    color: var(--mid);
    transition: color var(--transition);
}

.footer-contact-col a:hover {
    color: var(--red-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--red-light);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(6px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        padding: 120px 32px 40px;
        max-width: 100%;
    }

    .hero-image-side {
        padding: 0 32px 60px;
        justify-content: center;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-img-wrapper {
        max-height: 380px;
    }

    .why-img {
        height: 380px;
    }

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

    .service-card--full {
        grid-column: span 2;
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        padding: 100px 40px 40px 40px;
        gap: 24px;
        z-index: 999;
        border-bottom: none;
        animation: menuFadeIn 0.3s ease-out;
    }

    .nav-links.open a {
        font-family: var(--font-body);
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: none;
        color: rgba(255, 255, 255, 0.9);
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 16px;
    }

    .nav-links.open + .nav-cta {
        display: flex;
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 60px);
        justify-content: center;
        z-index: 1000;
        padding: 16px;
        font-size: 1.1rem;
        border-radius: 999px;
    }

    .hamburger {
        z-index: 1001;
        position: relative;
        background: transparent !important;
        border: none !important;
        outline: none !important;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        width: 2px;
        height: 32px;
    }

    .step-connector::after {
        right: unset;
        top: unset;
        bottom: -8px;
        left: -4px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 10px solid var(--red);
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-column: span 2;
        height: 220px;
    }

    .gallery-item {
        height: 180px;
    }

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

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

    .contact-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card--full {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .service-toggle {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin-bottom: 30px;
    }

    .toggle-btn {
        flex: 1 1 calc(50% - 12px);
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }

    .toggle-btn#tab-all {
        flex: 1 1 100%; 
    }

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

    .service-card {
        padding: 30px 24px;
        background: #ffffff;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICE TOGGLE TABS ===== */
.service-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.toggle-btn {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn:hover {
    border-color: rgba(250, 5, 5, 0.5);
    color: var(--white);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--red) 0%, var(--accent) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-red);
}

/* ===== VEHICLE TYPE BADGE ON SERVICE CARDS ===== */
.service-vehicle-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(250, 5, 5, 0.2);
    border: 1px solid rgba(255, 90, 54, 0.3);
    color: var(--red-light);
}

.bike-tag {
    background: rgba(26, 78, 139, 0.2);
    border-color: rgba(34, 100, 178, 0.3);
    color: #6ab0f0;
}

.both-tag {
    background: rgba(100, 60, 10, 0.2);
    border-color: rgba(200, 140, 30, 0.3);
    color: #e8b14f;
}

/* Full service card layout */
.service-card--full {
    flex-wrap: wrap;
}

.full-card-text {
    flex: 1;
}

.full-card-text h3 {
    margin-bottom: 8px;
}

.full-card-text p {
    margin-bottom: 0;
}

.service-card--full .service-icon {
    font-size: 3rem;
}

/* ===== BRANDS CATEGORY TITLE ===== */
.brands-cat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
}

/* ===== SEO TEXT SECTION ===== */
.seo-section {
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-content .section-title {
    margin-bottom: 28px;
}

.seo-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.seo-text-grid p {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-text-grid strong {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .seo-text-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===== FORM ROW (2 col) ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--mid);
    text-align: center;
    margin-top: 10px;
}

/* ===== NAV ACTIVE ===== */
.nav-links a.nav-active {
    color: var(--white);
}

.nav-links a.nav-active::after {
    width: 100%;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeInDown 0.2s ease;
}

.lightbox-inner {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(250, 5, 5, 0.4);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-inner img {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(250, 5, 5, 0.8);
    border: none;
    color: var(--white);
    font-size: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--red);
    transform: scale(1.1);
}

/* ===== ENTRY MODAL ===== */
.entry-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.entry-modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.entry-modal-content {
    background: var(--dark2);
    border: 1px solid rgba(250, 5, 5, 0.4);
    box-shadow: var(--shadow-red);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.entry-modal-overlay.hidden .entry-modal-content {
    transform: translateY(-20px);
}
.entry-modal-logo {
    height: 48px;
    margin: 0 auto 20px;
}
.entry-modal-content h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}
.entry-modal-content p {
    font-size: 0.9rem;
    color: var(--mid);
    margin-bottom: 24px;
    line-height: 1.5;
}
.entry-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--mid);
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}
.entry-modal-close:hover {
    background: rgba(250, 5, 5, 0.15);
    border-color: rgba(250, 5, 5, 0.4);
    color: var(--white);
}
.entry-skip-text {
    font-size: 0.8rem !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    color: rgba(255,255,255,0.3) !important;
}
.entry-skip-text a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    transition: var(--transition);
}
.entry-skip-text a:hover {
    color: var(--red-light);
}
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(250, 5, 5, 0.2);
}

.phone-input-wrapper .prefix {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 14px 15px;
    font-weight: 700;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-input-wrapper input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    color: var(--white);
    font-size: 1rem;
    padding: 14px 16px;
    outline: none !important;
    margin-bottom: 0 !important;
    letter-spacing: 2px;
}

/* ===== HERO VIDEO ===== */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0.4; /* Darkened further for better readability */
}

/* ===== LOCATION BADGE TRANSITION ===== */
#locationText {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 0 16px;
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--red);
}

.phone-input-wrapper .prefix {
    font-weight: 700;
    color: var(--white);
    margin-right: 12px;
    font-size: 1.1rem;
}

.phone-input-wrapper input {
    margin-bottom: 0 !important;
    border: none !important;
    padding-left: 0 !important;
    text-align: left !important;
}

.hero-subtitle span {
    color: var(--red-light);
    font-weight: 600;
}
/* ===== DYNAMIC GALLERY COMPONENTS ===== */
.gallery-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-align: left;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(250, 5, 5, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.project-card-image {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: #0d0d0d;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.project-card-info {
    padding: 30px 25px;
}

.project-card-info h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    font-family: var(--font-head);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-card-count {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--red-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    background: rgba(250, 5, 5, 0.1);
    border-radius: 50px;
}

/* Lightbox Base */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.6s;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    border: 1px solid rgba(255,255,255,0.1);
}

.skeleton-home {
    width: 100%;
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .gallery-grid-dynamic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .gallery-grid-dynamic { grid-template-columns: 1fr; }
}
