/* ═══════════════════════════════════════
   ŞAHİN KREATİF BASKI – styles.css
   ═══════════════════════════════════════ */

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

:root {
    --red: #E10600;
    --red-dark: #b80500;
    --red-light: #ff4d4d;
    --black: #111111;
    --dark: #1a1a1a;
    --gray-900: #212121;
    --gray-800: #2d2d2d;
    --gray-700: #3a3a3a;
    --gray-600: #555555;
    --gray-400: #9e9e9e;
    --gray-200: #e0e0e0;
    --gray-100: #f5f5f5;
    --white: #ffffff;

    --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .18);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-hover: 0 12px 40px rgba(225, 6, 0, .15);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);

    --header-h: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── SECTION HEADER ───────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header--left {
    text-align: left;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto 16px;
}

.section-header--left .section-desc {
    margin-left: 0;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 0 auto;
}

.section-header--left .section-line {
    margin: 0;
}

/* ── BUTTON ───────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(225, 6, 0, .3);
}

.btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(225, 6, 0, .4);
}

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

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

.btn--block {
    width: 100%;
    justify-content: center;
}

/* ═══════════ HEADER ═══════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    height: 64px;
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .header__logo-img {
    height: 36px;
}

.header__brand {
    font-size: .75rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .08em;
    line-height: 1.2;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    gap: 4px;
}

.header__link {
    padding: 8px 16px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.header__link:hover,
.header__link.active {
    color: var(--red);
    background: rgba(225, 6, 0, .06);
}

.header__actions {
    display: flex;
    gap: 8px;
}

.header__social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: .8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--red);
    color: var(--white);
    transition: var(--transition);
}

.header__social-btn:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.header__social-btn--trendyol {
    background: var(--red);
}

.header__social-btn--trendyol:hover {
    background: var(--red-dark);
}

.header__social-btn span {
    display: none;
}

.header__social-btn--trendyol span {
    display: inline;
    font-weight: 800;
    color: var(--white);
    font-size: .85rem;
    letter-spacing: -.3px;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.header__hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════ HERO ═════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 50%, #1a0000 100%);
    overflow: hidden;
    padding: calc(var(--header-h) + 40px) 24px 60px;
}

.hero__bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__stripe {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, .15), transparent);
}

.hero__stripe--1 {
    top: 30%;
    transform: rotate(-15deg);
}

.hero__stripe--2 {
    top: 50%;
    transform: rotate(-15deg);
    opacity: .6;
}

.hero__stripe--3 {
    top: 70%;
    transform: rotate(-15deg);
    opacity: .3;
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero__wing {
    position: absolute;
    width: 200px;
    opacity: .6;
    pointer-events: none;
}

.hero__wing--left {
    left: -40px;
    top: 30%;
}

.hero__wing--right {
    right: -40px;
    top: 30%;
}

.hero__logo {
    width: 340px;
    margin: 0 auto 24px;
    border-radius: 12px;
    mix-blend-mode: screen;
    opacity: .95;
    animation: fadeInDown .8s ease-out;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: .04em;
    margin-bottom: 12px;
    animation: fadeInUp .8s ease-out .2s both;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
    letter-spacing: .12em;
    margin-bottom: 36px;
    animation: fadeInUp .8s ease-out .4s both;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp .8s ease-out .6s both;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* ═══════════ SERVICES ═════════════════ */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

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

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ═══════════ GALLERY ══════════════════ */
.gallery {
    padding: 100px 0;
    background: var(--gray-100);
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 10px 22px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
}

.gallery__filter:hover {
    border-color: var(--red);
    color: var(--red);
}

.gallery__filter.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

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

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__item.hidden {
    display: none;
}

.gallery__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery__item:hover .gallery__placeholder {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
}

/* ═══════════ LIGHTBOX ═════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox[hidden] {
    display: flex;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox__close:hover {
    color: var(--red);
    transform: scale(1.1);
}

.lightbox__content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.lightbox__content>* {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
}

/* ═══════════ ABOUT ════════════════════ */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about__desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-top: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.about__feature:hover {
    background: rgba(225, 6, 0, .04);
    transform: translateX(8px);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.about__feature-icon svg {
    width: 100%;
    height: 100%;
}

.about__feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about__feature p {
    font-size: .875rem;
    color: var(--gray-600);
}

/* ═══════════ LOCATION ═════════════════ */
.location {
    padding: 100px 0;
    background: var(--gray-100);
}

.location__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.location__address-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
}

.location__address-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.location__address-card p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.location__icon {
    flex-shrink: 0;
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gray-200);
}

.location__map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* ═══════════ CONTACT ══════════════════ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact__inner--centered {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact__card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact__card:hover {
    background: rgba(225, 6, 0, .04);
    transform: translateX(4px);
}

.contact__card-icon {
    flex-shrink: 0;
}

.contact__card h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact__card p,
.contact__phone {
    font-size: .95rem;
    color: var(--gray-600);
}

.contact__phone {
    font-weight: 700;
    color: var(--red);
    font-size: 1.1rem;
}

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: .95rem;
    font-family: var(--font);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-100);
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, .1);
    background: var(--white);
}

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

/* ═══════════ TOAST ════════════════════ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast__content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: .95rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
}

/* ═══════════ FOOTER ═══════════════════ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
}

.footer__logo {
    height: 44px;
    margin-bottom: 12px;
    filter: brightness(1.2);
}

.footer__slogan {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .08em;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
}

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

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ═══════════ ANIMATIONS ═══════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

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

/* AOS (Appear on Scroll) */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════════ */

/* Tablets */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .container {
        padding: 0 16px;
    }

    /* Header mobile */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 80px 32px 40px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, .15);
        transition: right .35s ease;
        z-index: 999;
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        gap: 8px;
    }

    .header__link {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .header__actions {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .mobile-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .header__social-btn span {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 20px);
        padding-top: calc(var(--header-h) + 24px);
    }

    .hero__logo {
        width: 160px;
    }

    .hero__wing {
        display: none;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .services {
        padding: 60px 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery__filters {
        gap: 6px;
    }

    .gallery__filter {
        padding: 8px 16px;
        font-size: .8rem;
    }

    .about {
        padding: 60px 0;
    }

    .about__feature {
        padding: 20px;
    }

    .location {
        padding: 60px 0;
    }

    .location__map iframe {
        min-height: 280px;
    }

    .contact {
        padding: 60px 0;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__info {
        align-items: center;
    }

    .lightbox {
        padding: 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .toast__content {
        font-size: .85rem;
        padding: 14px 20px;
        white-space: normal;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

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

    .hero__title {
        letter-spacing: .01em;
    }

    .gallery__filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .service-card {
        padding: 20px 12px;
    }

    .btn {
        padding: 12px 20px;
        font-size: .85rem;
    }
}