/* ============================================================
   BULL BIKES — Modern Redesign 2026
   Shared Stylesheet
   ============================================================ */

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

:root {
    --c-bg: #ffffff;
    --c-bg-card: rgba(0,0,0,0.025);
    --c-bg-card-hover: rgba(0,0,0,0.05);
    --c-border: rgba(0,0,0,0.08);
    --c-border-hover: rgba(0,0,0,0.18);
    --c-text: #1a1a2e;
    --c-text-muted: rgba(0,0,0,0.5);
    --c-text-light: rgba(0,0,0,0.6);
    --c-accent: #2aa899;
    --c-accent2: #4961d7;
    --c-green: #2ea85c;
    --c-red: #dd5135;
    --c-pink: #e33b9e;
    --c-cyan: #2bb8ed;
    --f-heading: 'Nunito', sans-serif;
    --f-body: 'Nunito Sans', 'Open Sans', sans-serif;
    --max-w: 1200px;
    --radius: 14px;
    --transition: 0.35s cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ---------- HEADER ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 72px;
}

.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 38px; width: auto; filter: brightness(0) saturate(100%); }
.site-logo-text {
    font-family: var(--f-heading); font-weight: 700; font-size: 15px;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-text);
}
.site-logo-text span {
    display: block; font-weight: 300; font-size: 10px;
    letter-spacing: 1.5px; opacity: 0.45; margin-top: -2px;
}

.main-nav ul { list-style: none; display: flex; gap: 32px; }
.main-nav a {
    font-family: var(--f-heading); font-size: 12px; font-weight: 600;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: rgba(0,0,0,0.45); transition: color var(--transition);
    position: relative;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--c-accent);
    transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--c-text); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta {
    font-family: var(--f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 10px 24px; border-radius: 50px;
    background: var(--c-accent); color: #fff;
    transition: all var(--transition);
}
.header-cta:hover { background: var(--c-text); color: #fff; }

.lang-switch {
    display: flex; gap: 4px; margin-left: 8px; margin-right: 8px;
    font-family: var(--f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
}
.lang-switch a {
    padding: 6px 10px; border-radius: 4px;
    color: var(--c-text-muted); transition: all var(--transition);
}
.lang-switch a:hover { color: var(--c-text); }
.lang-switch a.active-lang {
    background: var(--c-accent); color: #fff; border-radius: 4px;
}

.mobile-toggle {
    display: none; background: none; border: none;
    color: var(--c-text); font-size: 22px;
}

/* ---------- HERO (Full-screen) ---------- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-gradient {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 50%, #1a1a2e 100%);
}
.hero-bg-gradient::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(42,168,153,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(73,97,215,0.2) 0%, transparent 60%);
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.45);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 800px; padding: 0 32px;
}

.hero-badge {
    display: inline-block; font-family: var(--f-heading);
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: #5eded0;
    border: 1px solid rgba(94,222,208,0.4);
    padding: 8px 24px; border-radius: 30px; margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--f-heading); font-size: 56px; font-weight: 800;
    line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}

.hero .hero-sub {
    font-size: 18px; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.75); margin-bottom: 40px;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ---------- HERO (Product Page — shorter) ---------- */
.hero-product { min-height: 92vh; }
.hero-product .hero-content { max-width: 900px; }

.hero-stats {
    display: flex; justify-content: center; gap: 50px;
    margin-top: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: var(--f-heading); font-size: 36px; font-weight: 800;
    line-height: 1;
}
.hero-stat .lbl {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block; font-family: var(--f-heading);
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 16px 42px; border-radius: 50px;
    transition: all var(--transition); border: none; cursor: pointer;
}

.btn-primary {
    background: var(--c-accent);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: #239385;
    box-shadow: 0 12px 35px rgba(42,168,153,0.3);
}

.btn-outline {
    border: 1.5px solid rgba(0,0,0,0.18);
    background: transparent; color: var(--c-text); margin-left: 12px;
}
.btn-outline:hover {
    border-color: var(--c-text); background: rgba(0,0,0,0.03);
}

.btn-white {
    background: var(--c-text); color: #fff;
}
.btn-white:hover {
    background: var(--c-accent); color: #fff;
    transform: translateY(-2px);
}

/* Hero-specific button overrides for dark background */
.hero .btn-outline {
    border-color: rgba(255,255,255,0.3); color: #fff;
}
.hero .btn-outline:hover {
    border-color: #fff; background: rgba(255,255,255,0.08);
}

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; }
.section-sm { padding: 80px 0; }
.bg-dark { background: #f5f6fa; }
.bg-darker { background: #eef0f5; }
.bg-gradient {
    background: linear-gradient(180deg, #f5f6fa 0%, #edf0f8 50%, #f5f6fa 100%);
}
.bg-accent-subtle {
    background: linear-gradient(135deg, rgba(42,168,153,0.07) 0%, rgba(73,97,215,0.07) 100%);
}

.section-heading { text-align: center; margin-bottom: 70px; }
.section-heading .label {
    font-family: var(--f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-accent); margin-bottom: 16px; display: block;
}
.section-heading h2 {
    font-family: var(--f-heading); font-size: 40px; font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
}
.section-heading p {
    font-size: 16px; font-weight: 300; color: var(--c-text-muted);
    max-width: 600px; margin: 0 auto; line-height: 1.8;
}

/* ---------- PRODUCT CARDS (Homepage) ---------- */
.product-showcase {
    position: relative; overflow: hidden; border-radius: var(--radius);
    border: 1px solid var(--c-border); transition: all var(--transition);
}
.product-showcase:hover {
    border-color: var(--c-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.product-showcase img {
    width: 100%; aspect-ratio: 19/7; object-fit: cover;
    transition: transform 0.6s ease;
}
.product-showcase:hover img { transform: scale(1.03); }

.product-info {
    padding: 35px 40px;
    background: linear-gradient(180deg, rgba(245,246,250,0.97), rgba(255,255,255,1));
}
.product-info h3 {
    font-family: var(--f-heading); font-size: 26px; font-weight: 700;
    margin-bottom: 12px;
}
.product-info p {
    font-size: 14px; font-weight: 300; color: var(--c-text-muted);
    line-height: 1.7; margin-bottom: 20px;
}
.product-link {
    font-family: var(--f-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: var(--c-accent);
    display: inline-flex; align-items: center; gap: 8px;
}
.product-link i { transition: transform var(--transition); }
.product-showcase:hover .product-link i { transform: translateX(5px); }

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: var(--c-bg-card); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 44px 32px; text-align: center;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px); border-color: rgba(42,168,153,0.3);
    background: var(--c-bg-card-hover);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.service-icon {
    width: 64px; height: 64px; margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 24px;
}
.service-icon.teal  { background: rgba(42,168,153,0.1); color: var(--c-accent); }
.service-icon.blue  { background: rgba(73,97,215,0.1); color: var(--c-accent2); }
.service-icon.green { background: rgba(46,168,92,0.1); color: var(--c-green); }
.service-icon.red   { background: rgba(221,81,53,0.1); color: var(--c-red); }
.service-icon.pink  { background: rgba(227,59,158,0.1); color: var(--c-pink); }
.service-icon.cyan  { background: rgba(43,184,237,0.1); color: var(--c-cyan); }

.service-card h3 {
    font-family: var(--f-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 13px; font-weight: 300; color: var(--c-text-muted);
    line-height: 1.7;
}

/* ---------- FEATURE ROWS (product detail) ---------- */
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center; margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-visual {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--c-border);
}
.feature-visual:has(.motor-slider) {
    border: none; border-radius: 0;
}
.feature-visual img { width: 100%; aspect-ratio: 65/35; object-fit: cover; }
.feature-visual.icon-only {
    aspect-ratio: 4/3; display: flex; align-items: center;
    justify-content: center; background: var(--c-bg-card);
}
.feature-visual .icon-large { font-size: 72px; opacity: 0.12; }

.feature-text .label {
    font-family: var(--f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-accent); margin-bottom: 14px; display: block;
}
.feature-text h3 {
    font-family: var(--f-heading); font-size: 30px; font-weight: 700;
    margin-bottom: 18px; line-height: 1.25;
}
.feature-text p {
    font-size: 15px; font-weight: 300; color: var(--c-text-light);
    line-height: 1.8; margin-bottom: 12px;
}

.check-list, .feature-list { list-style: none; margin-top: 18px; }
.check-list li, .feature-list li {
    font-size: 14px; font-weight: 300; color: var(--c-text-light);
    padding: 7px 0 7px 28px; position: relative;
}
.check-list li::before, .feature-list li::before {
    content: '\2713'; position: absolute; left: 0;
    color: var(--c-accent); font-weight: 700;
}

/* ---------- SPECS TABLE ---------- */
.specs-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--c-border); border-radius: var(--radius);
    overflow: hidden; max-width: 700px; margin: 0 auto;
}
.spec-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 28px; border-bottom: 1px solid var(--c-border);
}
.spec-item:nth-child(odd) { border-right: 1px solid var(--c-border); }
.spec-label {
    font-family: var(--f-heading); font-size: 13px; font-weight: 600;
    color: var(--c-text-muted);
}
.spec-value {
    font-family: var(--f-heading); font-size: 14px; font-weight: 700;
}

/* ---------- PRICE BOX ---------- */
.price-box {
    text-align: center; padding: 50px 30px;
    background: var(--c-bg-card); border: 1px solid var(--c-border);
    border-radius: var(--radius); max-width: 500px; margin: 50px auto 0;
}
.price-box .price {
    font-family: var(--f-heading); font-size: 48px; font-weight: 800;
}
.price-box .price-note {
    font-size: 13px; font-weight: 300; color: var(--c-text-muted);
    margin-top: 8px;
}

/* ---------- COLOR SWATCHES (product page) ---------- */
.color-section { text-align: center; margin-top: 50px; }
.color-section h4 {
    font-family: var(--f-heading); font-size: 16px; font-weight: 700;
    margin-bottom: 20px;
}
.color-section img {
    max-width: 700px; margin: 0 auto; border-radius: 8px;
}

/* ---------- ADDONS GRID ---------- */
.addons-grid {
    display: flex; justify-content: center; gap: 30px;
    flex-wrap: wrap; margin-top: 40px;
}
.addon-card {
    width: 200px; text-align: center;
    background: var(--c-bg-card); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 20px; transition: all var(--transition);
}
.addon-card:hover { border-color: var(--c-border-hover); }
.addon-card img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: 8px; margin-bottom: 12px;
}
.addon-card .addon-name {
    font-family: var(--f-heading); font-size: 14px; font-weight: 600;
}

/* ---------- IMAGE SLIDER (product hero) ---------- */
.slider { position: relative; width: 100%; height: 100%; }
.slider-track {
    display: flex; width: 100%; height: 100%;
    transition: transform 0.6s ease;
}
.slider-slide {
    min-width: 100%; height: 100%; position: relative;
}
.slider-slide img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.4);
}

.slider-nav {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 5;
    display: flex; gap: 10px;
}
.slider-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.3); border: none;
    cursor: pointer; transition: all var(--transition);
}
.slider-dot.active { background: #fff; transform: scale(1.2); }

.slider-arrow {
    position: absolute; top: 50%; z-index: 5;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    transition: all var(--transition);
}
.slider-arrow:hover { background: rgba(0,0,0,0.7); border-color: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* ---------- MOTOR PRODUCT SLIDER ---------- */
.motor-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.motor-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.motor-slider-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 20px;
    box-sizing: border-box;
}
.motor-slider-slide img {
    max-height: 220px;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: 16px;
}
.motor-slider-slide .motor-caption {
    font-family: var(--f-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
    text-align: center;
    letter-spacing: 0.5px;
}
.motor-slider-slide .motor-caption span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}
.motor-slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 18px;
}
.motor-slider-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.motor-slider-nav button.active {
    background: var(--c-accent);
    transform: scale(1.3);
}
.motor-slider-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    font-size: 48px;
}

/* ---------- BRANDS / TAGS ---------- */
.brands-subsection { margin-bottom: 55px; text-align: center; }
.brands-subsection:last-child { margin-bottom: 0; }
.brands-subsection h3 {
    font-family: var(--f-heading); font-size: 22px; font-weight: 700;
    margin-bottom: 8px;
}
.brands-subsection .subtitle {
    font-size: 14px; font-weight: 300; color: var(--c-text-muted);
    margin-bottom: 24px;
}
.brand-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.brand-tag {
    font-family: var(--f-heading); font-size: 13px; font-weight: 600;
    padding: 9px 22px; border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.025); transition: all var(--transition);
}
.brand-tag:hover {
    border-color: rgba(42,168,153,0.45); background: rgba(42,168,153,0.08);
}
.brand-tag.highlight {
    border-color: rgba(42,168,153,0.45); background: rgba(42,168,153,0.08);
    color: var(--c-accent);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; padding: 22px 0;
    background: none; border: none; color: var(--c-text);
    font-family: var(--f-heading); font-size: 16px; font-weight: 600;
    text-align: left;
}
.faq-question i { font-size: 13px; color: var(--c-accent); transition: transform var(--transition); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 22px; }
.faq-answer p { font-size: 14px; font-weight: 300; color: var(--c-text-muted); line-height: 1.8; }

/* ---------- CTA SECTION ---------- */
.cta-section {
    text-align: center; padding: 100px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.cta-section h2 {
    font-family: var(--f-heading); font-size: 40px; font-weight: 800;
    margin-bottom: 18px;
}
.cta-section p {
    font-size: 16px; font-weight: 300; color: var(--c-text-muted);
    max-width: 550px; margin: 0 auto 36px; line-height: 1.8;
}

.contact-row {
    display: flex; justify-content: center; gap: 55px;
    margin-top: 50px; flex-wrap: wrap;
}
.contact-item { text-align: center; }
.contact-item i { font-size: 22px; color: var(--c-accent); margin-bottom: 10px; display: block; }
.contact-item .val { font-family: var(--f-heading); font-size: 17px; font-weight: 600; }
.contact-item .lbl {
    font-size: 11px; font-weight: 300; color: var(--c-text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
    display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
    align-items: center;
}
.about-strip .about-img {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--c-border);
}
.about-strip .about-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.about-text h2 {
    font-family: var(--f-heading); font-size: 34px; font-weight: 800;
    margin-bottom: 20px; line-height: 1.2;
}
.about-text p {
    font-size: 15px; font-weight: 300; color: var(--c-text-light);
    line-height: 1.8; margin-bottom: 14px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #1a1a2e; border-top: 1px solid var(--c-border);
    padding: 60px 0 30px; color: #fff;
}
.site-footer .site-logo img { filter: none; }
.site-footer .site-logo-text { color: #fff; }
.footer-inner {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--f-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
}
.footer-col a {
    display: block; font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.footer-col a:hover { color: #fff; }

.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 38px; height: 38px; display: flex; align-items: center;
    justify-content: center; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
    font-size: 15px; transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--c-accent); color: var(--c-accent); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy {
    font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3);
}

/* ---------- LEGAL LINE ---------- */
.legal-note {
    font-size: 12px; font-weight: 300; color: var(--c-text-muted);
    text-align: center; max-width: 600px; margin: 30px auto 0;
    line-height: 1.7;
}

/* ---------- PREDELAVA WHY GRID ---------- */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
    text-align: center; padding: 36px 24px;
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card .icon {
    font-size: 32px; margin-bottom: 16px; color: var(--c-accent);
}
.why-card .icon.cyan { color: var(--c-cyan); }
.why-card .icon.blue { color: var(--c-accent2); }
.why-card .icon.green { color: var(--c-green); }
.why-card .icon.teal { color: var(--c-accent); }
.why-card .icon.red { color: var(--c-red); }
.why-card .icon.pink { color: var(--c-pink); }
.why-card h4 {
    font-family: var(--f-heading); font-size: 15px; font-weight: 700;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 13px; font-weight: 300; color: var(--c-text-muted);
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-grid img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    border-radius: 8px; border: 1px solid var(--c-border);
    transition: all var(--transition);
}
.gallery-grid img:hover { border-color: var(--c-border-hover); transform: scale(1.02); }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row { grid-template-columns: 1fr; gap: 40px; }
    .feature-row.reverse .feature-text { order: 1; }
    .feature-row.reverse .feature-visual { order: 2; }
    .about-strip { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .lang-switch { margin-left: auto; margin-right: 12px; }
    .mobile-toggle { display: block; }
    .main-nav.open {
        display: flex; position: fixed; top: 72px;
        left: 0; right: 0; background: rgba(255,255,255,0.98);
        padding: 24px 32px; z-index: 999;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }
    .main-nav.open ul { flex-direction: column; gap: 18px; width: 100%; }
    .header-inner { padding: 0 20px; }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 30px; }
    .hero .hero-sub { font-size: 15px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat .num { font-size: 28px; }

    .section { padding: 70px 0; }
    .section-heading h2 { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .spec-item:nth-child(odd) { border-right: none; }
    .contact-row { gap: 28px; }
    .cta-section h2 { font-size: 28px; }

    .btn-outline { margin-left: 0; margin-top: 12px; }

    .slider-arrow { display: none; }
}
