:root {
    --red: #df1825;
    --black: #111214;
    --gray: #68707b;
    --light: #f4f5f7;
    --white: #fff;
    --container: 1200px;
    --radius: 18px;
    --shadow: 0 20px 50px rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--black); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.topbar { color: var(--white); background: var(--black); font-size: 14px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; gap: 28px; }
.navbar { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand img { width: 190px; height: auto; }
.main-menu { display: flex; align-items: center; gap: 24px; font-weight: 700; }
.main-menu a:hover { color: var(--red); }
.hero { padding: 70px 0; color: var(--white); background: linear-gradient(120deg,#0e0f11,#24272b); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-eyebrow,.section-heading span,.contact-cta span { color: var(--red); font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.hero h1 { margin: 16px 0 20px; font-size: clamp(48px,7vw,88px); line-height: .98; text-transform: uppercase; }
.hero h1 strong { display: block; color: var(--red); }
.hero p { max-width: 650px; color: #d9dce1; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-visual img { width: 100%; border-radius: 22px; box-shadow: var(--shadow); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border: 2px solid transparent; border-radius: 10px; font-weight: 800; }
.button-primary { color: var(--white); background: var(--red); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.4); }
.button-light { background: var(--white); color: var(--black); }
.button-whatsapp { color: var(--white); background: #168f50; }
.features { position: relative; z-index: 2; margin-top: -35px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-card { padding: 30px; background: var(--white); }
.feature-card + .feature-card { border-left: 1px solid #e4e6e9; }
.feature-card span { color: var(--red); font-weight: 900; }
.feature-card h2 { margin: 8px 0; font-size: 21px; }
.feature-card p { margin: 0; color: var(--gray); }
.services-section,.process-section { padding: 100px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2 { margin: 8px 0 0; font-size: clamp(34px,5vw,55px); line-height: 1.05; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid #e4e6e9; border-radius: var(--radius); background: var(--white); }
.service-image-placeholder { min-height: 210px; display: grid; place-items: center; color: #777d86; background: linear-gradient(135deg,#eceef1,#dfe2e7); }
.service-content { padding: 24px; }
.service-content h3 { margin: 0 0 12px; font-size: 25px; }
.service-content a { color: var(--red); font-weight: 800; }
.process-section { background: var(--light); }
.process-banner { width: 100%; max-height: 180px; object-fit: contain; background: #fff; border-radius: var(--radius); padding: 20px; }
.contact-cta { padding: 55px 0; color: var(--white); background: var(--red); }
.contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-cta span { color: var(--white); }
.contact-cta h2 { margin: 5px 0 0; font-size: clamp(28px,4vw,44px); }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer { padding: 60px 0 95px; color: #c9cdd3; background: var(--black); }
.site-footer strong { color: var(--white); font-size: 24px; }
.whatsapp-button { position: fixed; right: 25px; bottom: 25px; z-index: 100; padding: 15px 22px; color: var(--white); background: #168f50; border-radius: 999px; box-shadow: var(--shadow); font-weight: 800; }
.mobile-actions { display: none; }
.error-page { min-height: 65vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.error-page span { color: var(--red); font-size: 90px; font-weight: 900; }
@media (max-width: 980px) {
    .main-menu { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2,1fr); }
    .service-grid { grid-template-columns: repeat(2,1fr); }
    .contact-cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px),var(--container)); }
    .topbar-inner { padding: 10px 0; align-items: flex-start; flex-direction: column; gap: 3px; }
    .hero { padding: 55px 0 90px; }
    .hero h1 { font-size: 50px; }
    .feature-grid,.service-grid { grid-template-columns: 1fr; }
    .feature-card + .feature-card { border-left: 0; border-top: 1px solid #e4e6e9; }
    .whatsapp-button { display: none; }
    .mobile-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 100; display: grid; grid-template-columns: repeat(3,1fr); color: var(--white); background: var(--black); }
    .mobile-actions a { padding: 15px 8px; text-align: center; font-size: 13px; font-weight: 800; }
    .mobile-actions a:nth-child(2) { background: #168f50; }
    .mobile-actions a:nth-child(3) { background: var(--red); }
}


/* v4 görsel zenginleştirme */
.hero-rich {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-rich::before,
.hero-rich::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.hero-rich::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -120px;
    background: rgba(223, 24, 37, .28);
}

.hero-rich::after {
    width: 300px;
    height: 300px;
    left: 35%;
    bottom: -180px;
    background: rgba(255, 255, 255, .08);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-badges span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.hero-trust-grid div {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
}

.hero-trust-grid strong,
.hero-trust-grid span {
    display: block;
}

.hero-trust-grid strong {
    color: #fff;
    font-size: 18px;
}

.hero-trust-grid span {
    color: #bfc4cb;
    font-size: 12px;
}

.hero-visual-wrap {
    position: relative;
    min-height: 520px;
}

.hero-visual {
    position: absolute;
    inset: 25px 15px 25px 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 34px;
    box-shadow: 0 35px 80px rgba(0,0,0,.34);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.52));
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    min-width: 135px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    color: #fff;
    background: rgba(17,18,20,.86);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.hero-floating-card span,
.hero-floating-card small {
    display: block;
}

.hero-floating-card span {
    color: var(--color-red);
    font-size: 24px;
    font-weight: 900;
}

.hero-card-top {
    right: 0;
    top: 0;
}

.hero-card-bottom {
    left: 0;
    bottom: 0;
}

.features-rich .feature-card {
    position: relative;
    overflow: hidden;
}

.features-rich .feature-card::after {
    position: absolute;
    right: -25px;
    bottom: -40px;
    width: 100px;
    height: 100px;
    content: "";
    border-radius: 50%;
    background: rgba(223,24,37,.07);
}

.feature-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff !important;
    background: var(--color-red);
    box-shadow: 0 12px 25px rgba(223,24,37,.25);
}

.about-showcase {
    padding: 110px 0;
    background: #fff;
}

.about-showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.about-media-stack {
    position: relative;
    min-height: 520px;
}

.about-media-main {
    position: absolute;
    inset: 0 70px 0 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-media-accent {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 210px;
    padding: 30px;
    border-radius: 22px;
    color: #fff;
    background: var(--color-red);
    box-shadow: 0 22px 55px rgba(223,24,37,.28);
}

.about-media-accent span,
.about-media-accent strong {
    display: block;
}

.about-media-accent span {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-media-accent strong {
    font-size: 36px;
}

.section-kicker {
    color: var(--color-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.about-content h2 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
}

.about-content > p {
    color: var(--color-gray);
    font-size: 18px;
}

.about-points {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.about-points div {
    position: relative;
    padding: 18px 18px 18px 52px;
    border: 1px solid #eceef1;
    border-radius: 14px;
    background: #fff;
}

.about-points div::before {
    position: absolute;
    left: 18px;
    top: 20px;
    width: 18px;
    height: 18px;
    content: "";
    border-radius: 50%;
    background: var(--color-red);
    box-shadow: 0 0 0 6px rgba(223,24,37,.10);
}

.about-points strong,
.about-points span {
    display: block;
}

.about-points span {
    color: var(--color-gray);
}

.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 50px;
}

.section-heading-split > p {
    margin: 0;
    color: var(--color-gray);
    font-size: 18px;
}

.service-card-rich {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: linear-gradient(145deg, #17191d, #2a2e34);
}

.service-card-rich::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 80% 10%, rgba(223,24,37,.28), transparent 34%),
        linear-gradient(180deg, transparent, rgba(0,0,0,.48));
}

.service-card-rich .service-visual,
.service-card-rich .service-content {
    position: relative;
    z-index: 2;
}

.service-visual {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
}

.service-visual > span {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.service-orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
}

.service-orbit::after {
    position: absolute;
    width: 13px;
    height: 13px;
    right: 8px;
    top: 7px;
    content: "";
    border-radius: 50%;
    background: var(--color-red);
    box-shadow: 0 0 0 8px rgba(223,24,37,.14);
}

.service-card-rich .service-content {
    color: #fff;
}

.service-card-rich .service-content p {
    color: #c7cbd1;
}

.process-section-rich {
    position: relative;
    overflow: hidden;
}

.process-section-rich::before {
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    top: 40px;
    content: "";
    border-radius: 50%;
    background: rgba(223,24,37,.08);
}

.center-heading {
    margin-inline: auto;
    text-align: center;
}

.visual-cta-strip {
    padding: 75px 0;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(17,18,20,.96), rgba(223,24,37,.88)),
        url('../images/tanitim.jpg') center/cover no-repeat;
}

.visual-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.visual-cta-grid span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.visual-cta-grid h2 {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
}

.visual-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.whatsapp-button {
    width: 64px;
    height: 64px;
    right: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 18px 45px rgba(0,0,0,.30);
    overflow: visible;
}

.whatsapp-button svg {
    width: 34px;
    height: 34px;
    color: #fff;
}

.whatsapp-button:hover {
    transform: translateY(-4px) scale(1.04);
}

.whatsapp-pulse {
    position: absolute;
    inset: -10px;
    z-index: -1;
    border: 2px solid rgba(37,211,102,.45);
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(.75); opacity: .9; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 980px) {
    .hero-visual-wrap { min-height: 450px; }
    .about-showcase-grid,
    .section-heading-split { grid-template-columns: 1fr; }
    .about-media-stack { min-height: 460px; }
    .visual-cta-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .hero-trust-grid { grid-template-columns: 1fr; }
    .hero-visual-wrap { min-height: 360px; }
    .hero-visual { inset: 20px 0; }
    .hero-floating-card { min-width: 112px; padding: 14px; }
    .hero-card-top { right: -4px; }
    .hero-card-bottom { left: -4px; }
    .about-showcase { padding: 75px 0; }
    .about-media-stack { min-height: 360px; }
    .about-media-main { right: 35px; }
    .about-media-accent { width: 165px; padding: 22px; }
    .section-heading-split { gap: 18px; }
}


/* Dinamik ana sayfa slider */
.home-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background: #111214;
}

.home-slider-track,
.home-slide {
    min-height: 680px;
}

.home-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition:
        opacity .65s ease,
        visibility .65s ease,
        transform 1.2s ease;
}

.home-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.home-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,11,13,.94) 0%, rgba(10,11,13,.74) 48%, rgba(10,11,13,.26) 100%),
        linear-gradient(0deg, rgba(10,11,13,.52), transparent 58%);
}

.home-slide-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 110px;
}

.home-slide-content h1 {
    max-width: 820px;
    margin: 16px 0 20px;
    font-size: clamp(50px, 7vw, 96px);
    line-height: .96;
    text-transform: uppercase;
}

.home-slide-content p {
    max-width: 700px;
    margin: 0;
    color: #e2e5e9;
    font-size: 20px;
}

.home-slide-kicker {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    color: #fff;
    background: rgba(17,18,20,.55);
    cursor: pointer;
    font-size: 24px;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.home-slider-prev {
    left: 24px;
}

.home-slider-next {
    right: 24px;
}

.home-slider-dots {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.home-slider-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.home-slider-dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--color-red);
}

@media (max-width: 760px) {
    .home-slider,
    .home-slider-track,
    .home-slide {
        min-height: 590px;
    }

    .home-slide-overlay {
        background: linear-gradient(90deg, rgba(10,11,13,.92), rgba(10,11,13,.56));
    }

    .home-slide-content {
        padding-top: 70px;
        padding-bottom: 95px;
    }

    .home-slide-content h1 {
        font-size: 48px;
    }

    .home-slide-content p {
        font-size: 17px;
    }

    .home-slider-arrow {
        display: none;
    }
}


/* Kurumsal alt sayfalar */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(17,18,20,.97), rgba(223,24,37,.78)),
        url('../images/tanitim.jpg') center/cover no-repeat;
}

.page-hero::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero span {
    font-weight: 900;
    letter-spacing: 1.6px;
}

.page-hero h1 {
    margin: 10px 0;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1;
    text-transform: uppercase;
}

.page-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 19px;
}

.page-section {
    padding: 95px 0;
}

.page-section-light {
    background: var(--color-light);
}

.corporate-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px;
    align-items: start;
}

.corporate-grid h2 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.04;
}

.corporate-grid > div > p {
    color: var(--color-gray);
    font-size: 18px;
}

.corporate-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.corporate-values article,
.certificate-card,
.contact-info-card {
    padding: 26px;
    border: 1px solid #e6e8ec;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17,18,20,.06);
}

.corporate-values strong {
    color: var(--color-red);
    font-size: 26px;
}

.corporate-values h3 {
    margin: 10px 0 5px;
}

.corporate-values p {
    margin: 0;
    color: var(--color-gray);
}

.public-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.public-card {
    overflow: hidden;
    border: 1px solid #e6e8ec;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(17,18,20,.07);
}

.public-card-media {
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #eceef1, #dfe2e7);
}

.public-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.public-card:hover .public-card-media img {
    transform: scale(1.05);
}

.public-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--color-gray);
    font-weight: 800;
}

.public-card-body {
    padding: 24px;
}

.public-card-body h2,
.public-card-body h3 {
    margin: 8px 0;
}

.public-card-body p,
.public-card-detail {
    color: var(--color-gray);
}

.public-card-detail {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eceef1;
}

.public-card-body > strong {
    color: var(--color-red);
}

.public-label,
.location-chip {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.public-label {
    color: var(--color-red);
    background: rgba(223,24,37,.08);
}

.location-chip {
    margin-top: 12px;
    color: #555d67;
    background: var(--color-light);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--color-red);
    font-weight: 900;
}

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

.certificate-code {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--color-red);
    font-weight: 900;
}

.certificate-card h2 {
    margin: 18px 0 8px;
    font-size: 23px;
}

.certificate-card p {
    color: var(--color-gray);
}

.empty-public {
    padding: 50px 25px;
    border: 1px dashed #cfd3d8;
    border-radius: 18px;
    color: var(--color-gray);
    background: var(--color-light);
    text-align: center;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 30px;
}

.contact-info-stack {
    display: grid;
    gap: 15px;
}

.contact-info-card span,
.contact-info-card a,
.contact-info-card strong {
    display: block;
}

.contact-info-card span {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card strong {
    margin-top: 6px;
    font-size: 17px;
}

.contact-info-card p {
    margin: 7px 0 0;
    color: var(--color-gray);
}

.contact-form-card {
    padding: 32px;
    border: 1px solid #e6e8ec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(17,18,20,.08);
}

.contact-form-card h2 {
    margin-top: 0;
    font-size: 32px;
}

.contact-form-card label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    font-weight: 800;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dfe2e6;
    border-radius: 10px;
    font: inherit;
    outline: none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(223,24,37,.08);
}

.alert-public {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
}

.alert-public.success {
    color: #176238;
    background: #e9f8ef;
    border: 1px solid #bce9cc;
}

.alert-public.error {
    color: #8f1018;
    background: #ffe9eb;
    border: 1px solid #ffc9ce;
}

.map-section {
    padding: 0 0 95px;
}

.map-section iframe,
.map-placeholder {
    width: 100%;
    min-height: 430px;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.map-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    padding: 35px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(17,18,20,.95), rgba(223,24,37,.78)),
        url('../images/tanitim.jpg') center/cover no-repeat;
    text-align: center;
}

.map-placeholder h2 {
    margin: 0;
    font-size: 42px;
}

.map-directions-button {
    margin-top: 18px;
}

@media (max-width: 980px) {
    .corporate-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .public-card-grid,
    .certificate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 75px 0;
    }

    .page-section {
        padding: 70px 0;
    }

    .corporate-values,
    .public-card-grid,
    .certificate-grid,
    .form-two-column {
        grid-template-columns: 1fr;
    }
}


/* Özellik kartı ikonları */
.feature-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 16px;
    color: #000;
    background: linear-gradient(145deg, var(--color-red), var(--color-red-dark));
    box-shadow: 0 13px 28px rgba(223, 24, 37, .28);
}

.feature-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.features-rich .feature-card:hover .feature-icon {
    transform: translateY(-3px) rotate(-2deg);
}

.feature-icon {
    transition: transform .25s ease;
}

/* Belge küçük önizlemeleri */
.certificate-card {
    padding: 0;
    overflow: hidden;
}

.certificate-preview {
    position: relative;
    height: 205px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: inherit;
    background:
        linear-gradient(145deg, rgba(17, 18, 20, .04), rgba(223, 24, 37, .08)),
        #f2f3f5;
}

.certificate-preview::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 1px solid rgba(255, 255, 255, .45);
    pointer-events: none;
}

.certificate-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.certificate-card:hover .certificate-preview img {
    transform: scale(1.055);
}

.certificate-card-content {
    padding: 25px;
}

.certificate-card-content .certificate-code {
    margin-top: -54px;
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 12px 25px rgba(17, 18, 20, .16);
}

.certificate-file-icon {
    width: 116px;
    min-height: 116px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 17px;
    border-radius: 23px;
    color: #fff;
    background: linear-gradient(145deg, #22252a, #111214);
    box-shadow: 0 17px 38px rgba(17, 18, 20, .22);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.certificate-file-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.certificate-pdf-icon {
    background: linear-gradient(145deg, var(--color-red), var(--color-red-dark));
}


/* v5.4 ikon ve hareket geliştirmeleri */
.feature-icon {
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto;
}

.feature-icon svg {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    overflow: visible;
    fill: none !important;
    stroke: #fff !important;
    stroke-width: 2.5 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon-training svg {
    width: 36px !important;
    height: 36px !important;
}

.hero-title-wrap {
    position: relative;
    display: inline-block;
}

.hero-title-wrap h1 {
    position: relative;
    z-index: 2;
}

.hero-glow-dot {
    position: absolute;
    right: -28px;
    top: 14px;
    z-index: 3;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-red);
    box-shadow:
        0 0 0 0 rgba(223, 24, 37, .55),
        0 0 22px rgba(223, 24, 37, .95),
        0 0 42px rgba(223, 24, 37, .55);
    animation:
        heroDotPulse 1.8s ease-out infinite,
        heroDotFloat 3.4s ease-in-out infinite;
}

.hero-glow-dot::before,
.hero-glow-dot::after {
    position: absolute;
    inset: 50% auto auto 50%;
    content: "";
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-glow-dot::before {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .42);
    animation: heroDotRing 2.2s linear infinite;
}

.hero-glow-dot::after {
    width: 6px;
    height: 6px;
    background: #fff;
    box-shadow: 0 0 12px #fff;
}

@keyframes heroDotPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(223, 24, 37, .58),
            0 0 18px rgba(223, 24, 37, .9);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(223, 24, 37, 0),
            0 0 36px rgba(223, 24, 37, .7);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(223, 24, 37, 0),
            0 0 18px rgba(223, 24, 37, .9);
    }
}

@keyframes heroDotFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.08); }
}

@keyframes heroDotRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-visual {
    isolation: isolate;
}

.service-visual::before,
.service-visual::after {
    position: absolute;
    inset: -8px;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.service-visual::before {
    border: 2px solid rgba(255, 255, 255, .92);
    border-top-color: transparent;
    border-left-color: rgba(255, 255, 255, .28);
    animation: serviceRingClockwise 4.5s linear infinite;
}

.service-visual::after {
    inset: -17px;
    border: 2px solid rgba(223, 24, 37, .96);
    border-right-color: transparent;
    border-bottom-color: rgba(223, 24, 37, .24);
    box-shadow: 0 0 24px rgba(223, 24, 37, .22);
    animation: serviceRingCounter 6s linear infinite;
}

.service-orbit {
    border-color: rgba(255, 255, 255, .34) !important;
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, .05),
        0 0 24px rgba(223, 24, 37, .12);
}

.service-orbit::before {
    position: absolute;
    left: 2px;
    top: 50%;
    width: 9px;
    height: 9px;
    content: "";
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 0 10px #fff,
        0 0 22px rgba(255, 255, 255, .8);
    transform: translateY(-50%);
}

.service-orbit::after {
    box-shadow:
        0 0 0 7px rgba(223, 24, 37, .12),
        0 0 18px rgba(223, 24, 37, .9) !important;
    animation: serviceDotGlow 1.6s ease-in-out infinite;
}

.service-visual > span {
    position: relative;
    z-index: 4;
    text-shadow:
        0 0 15px rgba(255, 255, 255, .45),
        0 0 25px rgba(223, 24, 37, .35);
}

.service-card-rich:hover .service-visual::before {
    animation-duration: 2.2s;
}

.service-card-rich:hover .service-visual::after {
    animation-duration: 3s;
}

@keyframes serviceRingClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes serviceRingCounter {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes serviceDotGlow {
    0%, 100% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.35); opacity: 1; }
}

@media (max-width: 640px) {
    .hero-glow-dot {
        right: -14px;
        top: 3px;
        width: 13px;
        height: 13px;
    }

    .service-visual::after {
        inset: -12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow-dot,
    .hero-glow-dot::before,
    .service-visual::before,
    .service-visual::after,
    .service-orbit::after {
        animation: none !important;
    }
}


/* Mobil navigasyon */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #e2e5e9;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    place-items: center;
    position: relative;
    z-index: 120;
}

.mobile-menu-toggle span {
    position: absolute;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background-color: #333; /* Çizgi rengini buradan değiştirebilirsiniz */
    transition:
        transform .28s ease,
        opacity .2s ease,
        top .28s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 15px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 22px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 29px;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

/* İletişim ikonlu kartlar */
.contact-page-section {
    position: relative;
    overflow: hidden;
}

.contact-page-section::before {
    position: absolute;
    right: -180px;
    top: 120px;
    width: 420px;
    height: 420px;
    content: "";
    border-radius: 50%;
    background: rgba(223, 24, 37, .055);
    pointer-events: none;
}

.contact-icon-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.contact-icon-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid rgba(222, 225, 230, .95);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 16px 42px rgba(17, 18, 20, .07);
    backdrop-filter: blur(12px);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.contact-icon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 24, 37, .25);
    box-shadow: 0 22px 52px rgba(17, 18, 20, .12);
}

.contact-card-icon,
.map-heading-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, var(--color-red), var(--color-red-dark));
    box-shadow: 0 13px 28px rgba(223, 24, 37, .26);
}

.contact-card-icon svg,
.map-heading-icon svg {
    width: 30px;
    height: 30px;
    fill: none;    
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon-card span,
.map-section-heading span,
.contact-whatsapp-panel > span {
    display: block;
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.contact-icon-card a,
.contact-icon-card strong {
    display: block;
    margin-top: 5px;
    font-weight: 800;
}

.contact-icon-card p {
    margin: 6px 0 0;
    color: var(--color-gray);
}

.contact-mini-link {
    display: inline-flex !important;
    width: fit-content;
    margin-top: 10px !important;
    color: var(--color-red);
}

.contact-page-grid-spaced {
    margin-top: 10px;
}

.contact-whatsapp-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 36px;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .12), transparent 25%),
        linear-gradient(145deg, #128c4b, #0d6f3c);
    box-shadow: 0 22px 55px rgba(18, 140, 75, .22);
}

.contact-whatsapp-panel::after {
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 190px;
    height: 190px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.contact-whatsapp-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.contact-whatsapp-icon svg {
    width: 38px;
    height: 38px;
    fill: currentColor;
}

.contact-whatsapp-panel > span {
    color: rgba(255, 255, 255, .75);
}

.contact-whatsapp-panel h2 {
    position: relative;
    z-index: 2;
    margin: 8px 0 13px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.contact-whatsapp-panel p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .8);
}

.contact-whatsapp-panel .button {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .14);
}

.contact-map-section {
    padding-top: 15px;
}

.map-section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.map-section-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(30px, 4vw, 48px);
}

.map-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: grid;
    }

    .navbar {
        position: relative;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 110;
        width: min(86vw, 360px);
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        padding: 105px 22px 35px;
        background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,249,.98));
        box-shadow: -24px 0 60px rgba(17,18,20,.18);
        transform: translateX(105%);
        opacity: 0;
        visibility: hidden;
        transition:
            transform .32s ease,
            opacity .25s ease,
            visibility .25s ease;
    }

    .main-menu::before {
        position: absolute;
        inset: 0 auto 0 -100vw;
        width: 100vw;
        content: "";
        background: rgba(17,18,20,.52);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .main-menu.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-menu.is-open::before {
        opacity: 1;
    }

    .main-menu a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 12px 16px;
        border-radius: 11px;
        color: var(--color-black);
        background: transparent;
        font-size: 17px;
    }

       .main-menu a:hover,
    .main-menu a:focus,
    .main-menu a.active {
        color: var(--color-red);
        background: rgba(223, 24, 37, 0.08);
    }

    

    .main-menu a::after {
        display: none;
    }

    .contact-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-icon-grid {
        grid-template-columns: 1fr;
    }

    .contact-icon-card {
        grid-template-columns: 55px 1fr;
        padding: 20px;
    }

    .contact-card-icon,
    .map-heading-icon {
        width: 52px;
        height: 52px;
    }

    .contact-whatsapp-panel {
        padding: 28px;
    }

    .map-section-heading {
        align-items: flex-start;
    }

    .main-menu {
        width: 88vw;
    }
}


/* Font Awesome ve gelişmiş ana sayfa */
.feature-icon i,
.contact-card-icon i,
.map-heading-icon i {
    font-size: 27px;
    line-height: 1;
}

.feature-icon svg,
.contact-card-icon svg,
.map-heading-icon svg,
.contact-whatsapp-icon svg,
.whatsapp-button svg {
    display: none !important;
}

.whatsapp-button {
    bottom: 94px !important;
}

.whatsapp-button > i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 35px;
}

.mobile-actions a {
    display: grid;
    place-items: center;
    gap: 3px;
}

.mobile-actions i {
    font-size: 17px;
}

.mobile-actions span {
    display: block;
}

.hero-badges i,
.button i {
    margin-right: 7px;
}

.hero-trust-grid i {
    display: block;
    margin-bottom: 8px;
    color: var(--color-red);
    font-size: 20px;
}

.hero-floating-card > i {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 21px;
}

.about-media-accent > i {
    display: block;
    margin-bottom: 10px;
    font-size: 26px;
}

.about-points div {
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 12px;
}

.about-points div::before {
    display: none;
}

.about-points i {
    grid-row: 1 / span 2;
    margin-top: 4px;
    color: var(--color-red);
    font-size: 18px;
}

.service-visual > i {
    position: relative;
    z-index: 4;
    color: #fff;
    font-size: 28px;
    text-shadow: 0 0 18px rgba(255,255,255,.4);
}

.service-visual > span {
    position: absolute;
    right: -4px;
    bottom: -9px;
    min-width: 33px;
    padding: 4px 7px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 999px;
    color: #fff;
    background: var(--color-red);
    font-size: 12px;
    text-align: center;
}

.counter-section {
    padding: 75px 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(17,18,20,.97), rgba(38,41,47,.96)),
        url('../images/tanitim.jpg') center/cover no-repeat;
}

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

.counter-card {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    text-align: center;
    backdrop-filter: blur(10px);
}

.counter-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 17px;
    color: #fff;
    background: var(--color-red);
    font-size: 23px;
    box-shadow: 0 13px 28px rgba(223,24,37,.25);
}

.counter-card strong {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
}

.counter-card p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.72);
    font-weight: 800;
}

.reference-carousel-section {
    padding: 95px 0;
    overflow: hidden;
    background: #fff;
}

.reference-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reference-marquee-track {
    width: max-content;
    display: flex;
    gap: 18px;
    animation: referenceMarquee 30s linear infinite;
}

.reference-marquee:hover .reference-marquee-track {
    animation-play-state: paused;
}

.reference-logo-card {
    width: 260px;
    min-height: 105px;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid #e4e7eb;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(17,18,20,.06);
}

.reference-logo-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.reference-logo-card > i {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--color-red);
    font-size: 27px;
}

.reference-logo-card strong,
.reference-logo-card span {
    display: block;
}

.reference-logo-card span {
    margin-top: 4px;
    color: var(--color-gray);
    font-size: 12px;
}

.instagram-section {
    padding: 95px 0;
    background: var(--color-light);
}

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

.instagram-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    box-shadow: 0 15px 40px rgba(17,18,20,.09);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(223,24,37,.25), rgba(99,36,156,.45));
    opacity: 0;
    transition: opacity .3s ease;
}

.instagram-overlay i {
    font-size: 42px;
}

.instagram-card:hover img {
    transform: scale(1.07);
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity .75s ease var(--reveal-delay, 0ms),
        transform .75s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}

.reveal-up {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

.contact-whatsapp-icon > i {
    font-size: 39px;
}

.contact-card-icon i,
.map-heading-icon i {
    color: #fff;
}

@keyframes referenceMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 9px)); }
}

@media (max-width: 980px) {
    .counter-grid,
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-button {
        bottom: 88px !important;
    }
}

@media (max-width: 640px) {
    .counter-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .reference-logo-card {
        width: 225px;
    }

    .whatsapp-button {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reference-marquee-track,
    .reveal-up,
    .reveal-left,
    .reveal-right {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
