:root {
    --color-teal: #2FA5A0;
    --color-aqua: #3FEFEA;
    --color-deep-teal: #0E5C67;
    --color-mist: #8CB7B9;
    --color-graphite: #5A666D;
    --color-neutral-light: #E6EBEB;
    --font-primary: 'Poppins', 'Segoe UI', sans-serif;
    --font-secondary: 'Roboto', 'Segoe UI', sans-serif;
    --transition-base: all 0.3s ease;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 25px 60px rgba(14, 92, 103, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-graphite);
    background: linear-gradient(180deg, rgba(230, 235, 235, 0.4) 0%, rgba(230, 235, 235, 0.9) 35%, #fff 100%);
}

/* Global scrollbar gizleme sadece mobil görünümde uygulanır */

/* Desktop görünümde normal container yapısı korunur */

.btn-primary {
    background: linear-gradient(135deg, var(--color-teal), var(--color-deep-teal));
    border: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(47, 165, 160, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.navbar {
    backdrop-filter: blur(14px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(14, 92, 103, 0.08);
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand span {
    color: var(--color-deep-teal);
}

.navbar-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.navbar-logo:hover {
    opacity: 0.85;
}

.top-bar {
    background-color: var(--color-deep-teal);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 1rem;
    transition: var(--transition-base);
}

.top-bar a:hover {
    color: var(--color-aqua);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(63, 239, 234, 0.35), rgba(14, 92, 103, 0.1) 40%), linear-gradient(120deg, #fff 0%, rgba(230, 235, 235, 0.8) 100%);
}

.hero .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.hero .shape.shape-1 {
    width: 320px;
    height: 320px;
    background: var(--color-teal);
    top: -120px;
    right: -80px;
    animation-delay: -2s;
}

.hero .shape.shape-2 {
    width: 280px;
    height: 280px;
    background: var(--color-aqua);
    bottom: -120px;
    left: -60px;
    animation-delay: -4s;
}

.hero .shape.shape-3 {
    width: 220px;
    height: 220px;
    background: rgba(14, 92, 103, 0.35);
    top: 15%;
    left: 12%;
    animation-delay: -6s;
}

.hero .shape.shape-4 {
    width: 180px;
    height: 180px;
    background: rgba(63, 239, 234, 0.28);
    bottom: 22%;
    right: 14%;
    animation-delay: -3s;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(63, 239, 234, 0.25), transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero .card-hero {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.hero-media__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.8s ease;
}

.hero-media:hover .hero-media__img {
    transform: scale(1.05);
}

.hero-media__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(47, 165, 160, 0.22), transparent 60%);
    pointer-events: none;
}

.hero-media__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: rgba(14, 92, 103, 0.9);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.hero-slider {
    position: relative;
}

.hero .swiper {
    padding-bottom: 3.5rem;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
    min-height: 420px;
}

[data-hero-slide].is-active .hero-media__img {
    transform: scale(1.04);
}

[data-hero-slide].is-active .hero-media__badge {
    background: linear-gradient(135deg, var(--color-teal), var(--color-deep-teal));
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-deep-teal);
    box-shadow: 0 10px 30px rgba(14, 92, 103, 0.15);
    transition: var(--transition-base);
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    transform: translateY(-2px);
    background: #fff;
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 600;
}

.hero .swiper-pagination-bullet {
    background: rgba(14, 92, 103, 0.25);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
}

.hero-ghost-btn {
    background-color: rgba(47, 165, 160, 0.16);
    color: var(--color-deep-teal);
}

.hero-ghost-btn:hover {
    color: var(--color-deep-teal);
    background-color: rgba(47, 165, 160, 0.24);
}

.hero-metrics span:first-child {
    letter-spacing: 1px;
}

.hero-floating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-floating__item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(47, 165, 160, 0.12);
    color: var(--color-deep-teal);
    font-weight: 500;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 30px rgba(14, 92, 103, 0.12);
    animation: float 10s ease-in-out infinite;
}

.hero-floating__item:nth-child(2) {
    animation-delay: -4s;
}

.hero-floating__item:nth-child(3) {
    animation-delay: -6s;
}

.promo-video-section {
    background: linear-gradient(160deg, rgba(14, 92, 103, 0.92) 0%, rgba(47, 165, 160, 0.85) 45%, rgba(11, 42, 47, 0.92) 100%);
    position: relative;
}

.promo-video-section .promo-video-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(63, 239, 234, 0.25), transparent 55%),
                radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.12), transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.promo-video-section .badge {
    letter-spacing: 0.08em;
}

.promo-video-section .btn-outline-light:hover {
    color: #0e5c67;
    background-color: #fff;
}

.section-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
    border-radius: 6px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: var(--transition-base);
    border: 1px solid rgba(47, 165, 160, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    top: -35px;
    right: -35px;
    background: rgba(63, 239, 234, 0.25);
    border-radius: 50%;
    transition: var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
    transform: scale(1.2);
}

.service-card h5 {
    color: var(--color-deep-teal);
    font-weight: 600;
}

.service-card__media {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

.service-card__media::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(63, 239, 234, 0.25);
    border-radius: 50%;
    z-index: -1;
}

.service-card__image {
    max-width: 150px;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(14, 92, 103, 0.15);
    object-fit: cover;
    width: 100%;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 165, 160, 0.12), rgba(63, 239, 234, 0.18));
    color: var(--color-deep-teal);
    font-size: 1.75rem;
    box-shadow: 0 12px 30px rgba(14, 92, 103, 0.1);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-deep-teal);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.service-card__link i {
    transition: transform 0.2s ease;
}

.service-card__link:hover {
    color: var(--color-teal);
}

.service-card__link:hover i {
    transform: translateX(4px);
}

.service-group-hero {
    background: linear-gradient(135deg, rgba(47, 165, 160, 0.12), #ffffff);
    background: linear-gradient(135deg, color-mix(in srgb, var(--service-hero-color, #0e5c67) 18%, #ffffff), #ffffff);
    border-top: 4px solid var(--service-hero-color, #0e5c67);
    min-height: 100%;
}

.service-group-hero img {
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(14, 92, 103, 0.12);
}

.tilt-card {
    transform: perspective(1000px);
    will-change: transform;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tilt-card:hover {
    box-shadow: var(--shadow-soft);
}

.tilt-card.is-tilting {
    box-shadow: var(--shadow-soft);
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: rgba(47, 165, 160, 0.12);
    color: var(--color-deep-teal);
    font-size: 0.9rem;
}

.reference-logo {
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(47, 165, 160, 0.08);
    filter: grayscale(100%);
    opacity: 0.65;
    transition: var(--transition-base);
}

.reference-logo img {
    filter: grayscale(100%);
    opacity: 0.65;
    transition: var(--transition-base);
}

.reference-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.reference-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.references-hero {
    position: relative;
    margin-top: 4rem;
    padding: 6rem 0;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(160deg, rgba(63, 239, 234, 0.18), rgba(14, 92, 103, 0.08));
}

.references-hero__curve {
    position: absolute;
    left: 50%;
    width: 130%;
    height: 180px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.95;
}

.references-hero__curve--top {
    top: -140px;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.references-hero__curve--bottom {
    bottom: -140px;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

.references-hero__inner {
    position: relative;
    z-index: 1;
}

.references-hero__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: center;
    justify-items: center;
    gap: 1.5rem;
}

.references-hero__slider {
    position: relative;
    padding: 0 4rem;
}

.references-hero__slider .swiper-wrapper {
    align-items: stretch;
}

.references-hero__slider .swiper-slide {
    height: auto;
}

.references-hero__item {
    height: 100%;
    min-height: clamp(220px, 28vw, 280px);
    max-width: 280px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(14, 92, 103, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.references-hero__image {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.references-hero__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(14, 92, 103, 0.35);
}

.references-hero__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-deep-teal);
    padding: 1.5rem;
    font-size: 1.1rem;
}

.references-hero__logo {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: grayscale(30%) contrast(0.9) brightness(0.98);
    transition: all 0.4s ease;
}

.references-hero__item:hover .references-hero__logo {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.05);
}

.references-hero__nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0 1rem;
}

.references-hero__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-deep-teal);
    box-shadow: 0 16px 30px rgba(14, 92, 103, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    pointer-events: auto;
    transition: transform 0.2s ease, background 0.2s ease;
}

.references-hero__btn:hover {
    transform: translateY(-2px);
    background: #fff;
}

.references-hero__pagination {
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.references-hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(14, 92, 103, 0.25);
    opacity: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.references-hero__pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
    transform: scale(1.2);
}

.references-section {
    background: linear-gradient(180deg, #fff 0%, rgba(230, 235, 235, 0.3) 100%);
}

.references-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ref-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.ref-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #2FA5A0, #3FEFEA);
    top: -100px;
    right: 10%;
    animation-delay: -2s;
}

.ref-shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #0E5C67, #2FA5A0);
    bottom: -80px;
    left: 5%;
    animation-delay: -5s;
}

.ref-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3FEFEA, #8CB7B9);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -8s;
}

.references-gallery {
    position: relative;
    z-index: 2;
    perspective: 3000px;
    padding: 4rem 0;
    overflow: hidden;
}

.references-arc-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 5rem 0 3rem 0;
}

.references-arc-track::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 150%;
    height: 400px;
    background: radial-gradient(ellipse 70% 50% at center top, 
                rgba(180, 230, 235, 1) 0%, 
                rgba(180, 230, 235, 1) 15%, 
                rgba(180, 230, 235, 0.98) 30%, 
                rgba(180, 230, 235, 0.8) 45%, 
                transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    clip-path: ellipse(75% 50% at 50% 0%);
}

.references-arc-track::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 150%;
    height: 400px;
    background: radial-gradient(ellipse 70% 50% at center top, 
                rgba(180, 230, 235, 1) 0%, 
                rgba(180, 230, 235, 1) 15%, 
                rgba(180, 230, 235, 0.98) 30%, 
                rgba(180, 230, 235, 0.8) 45%, 
                transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    clip-path: ellipse(75% 50% at 50% 0%);
}

.references-arc-gallery {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    position: relative;
    padding: 0;
    z-index: 5;
    will-change: transform;
}

.references-arc-gallery:not([data-marquee-active]) {
    justify-content: center;
}

.reference-arc-item {
    flex: 0 0 auto;
    width: clamp(180px, 16vw, 220px);
}

.reference-card-modern {
    position: relative;
    transform: none !important;
    height: auto !important;
    min-height: 180px;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-card-content {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
}

.reference-card-glow,
.reference-card-border,
.reference-card-shine {
    display: none;
}

.reference-card-image {
    max-width: 100%;
    width: auto;
    height: 110px;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
}

.reference-card-modern:hover .reference-card-image {
    transform: scale(1.05);
}

.reference-card-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: var(--color-deep-teal);
    padding: 1rem;
}

@media (max-width: 991px) {
    .references-arc-gallery {
        gap: 2rem;
        justify-content: flex-start;
    }

    .references-arc-gallery .reference-arc-item {
        width: 160px;
    }

    .reference-card-modern {
        min-height: 160px;
    }

    .reference-card-image {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .references-gallery {
        padding: 2rem 0 1rem;
        perspective: none;
    }

    .references-arc-track {
        padding: 0;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: thin;
    }

    .references-arc-track::before,
    .references-arc-track::after {
        display: none;
    }

    .references-arc-gallery {
        animation: none;
        justify-content: flex-start;
        gap: 1.25rem;
        padding: 0 1rem;
        min-width: max-content;
        flex-wrap: nowrap;
    }

    .references-arc-gallery .reference-arc-item {
        width: 140px !important;
    }

    .reference-card-modern {
        min-height: 140px;
    }

    .reference-card-content {
        padding: 0;
    }

    .reference-card-image {
        height: 90px;
    }
}

@media (max-width: 575px) {
    .references-arc-gallery {
        padding: 0 0.75rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .references-arc-gallery .reference-arc-item {
        width: 120px !important;
    }
    
    .reference-card-modern {
        min-height: 120px;
    }
    
    .reference-card-image {
        height: 80px;
    }

    .references-arc-track::after {
        display: none;
    }
}

@media (max-width: 420px) {
    .references-arc-gallery .reference-arc-item {
        width: 110px !important;
    }

    .reference-card-modern {
        min-height: 110px;
    }

    .reference-card-image {
        height: 72px;
    }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    main, section {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    main::-webkit-scrollbar,
    section::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    html, body, main, section, div, article, aside, header, footer, nav {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
    }

    *::-webkit-scrollbar-track {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
    }

    *::-webkit-scrollbar-thumb {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
    }

    .container, .container-fluid {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .references-hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .references-hero {
        overflow-x: hidden !important;
        overflow-y: visible;
        width: 100% !important;
        max-width: 100% !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .references-hero::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .references-hero__curve {
        width: 100%;
        left: 0;
        transform: none;
    }

    .references-hero__gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        overflow-x: hidden !important;
        overflow-y: visible;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .references-hero__gallery::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .references-hero__item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    .references-hero__inner {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .references-hero__inner::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .references-hero__slider {
        padding: 0 2.5rem;
    }

    .references-hero__btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .references-hero__slider {
        padding: 0 2rem;
    }

    .references-hero__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .references-hero__item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .references-hero__image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

.references-showcase {
    position: relative;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(63, 239, 234, 0.18), rgba(14, 92, 103, 0.08)), #fff;
    padding: 3rem clamp(1.5rem, 3vw, 3.5rem);
    overflow: hidden;
    border: 1px solid rgba(47, 165, 160, 0.12);
    box-shadow: 0 30px 60px rgba(14, 92, 103, 0.08);
}

.references-showcase__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(63, 239, 234, 0.25), transparent 55%),
                radial-gradient(circle at 80% 30%, rgba(14, 92, 103, 0.18), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.references-grid {
    position: relative;
    z-index: 1;
}

.reference-card {
    height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 165, 160, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(14, 92, 103, 0.15);
}

.reference-card__inner {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.reference-card__image {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.reference-card:hover .reference-card__image {
    filter: grayscale(0);
    opacity: 1;
}

.reference-card__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-deep-teal);
}

.reference-marquee {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 165, 160, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 1.75rem 0;
}

.reference-marquee__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    will-change: transform;
}

.reference-marquee__item {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-deep-teal);
    opacity: 0.85;
    font-size: 0.95rem;
}

.reference-marquee__item img {
    max-height: 56px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.reference-marquee__item span {
    display: inline-block;
    padding: 0.2rem 0;
}

.reference-marquee__item:hover img,
.reference-marquee__item:hover span {
    filter: grayscale(0);
    opacity: 1;
}

.reference-marquee:hover .reference-marquee__inner {
    animation-play-state: paused;
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(14, 92, 103, 0.15);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(14, 92, 103, 0.2);
}

.blog-card__media {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.6rem 2.2rem 2.2rem;
}

.blog-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 6rem;
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-card__author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(63, 239, 234, 0.3), rgba(14, 92, 103, 0.35));
    color: var(--color-deep-teal);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.blog-card__author-details {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.blog-card__author-name {
    font-weight: 600;
    color: var(--color-deep-teal);
}

.blog-card__publish-date {
    font-size: 0.82rem;
    color: var(--color-graphite);
    opacity: 0.7;
}

.blog-card__date-badge {
    position: absolute;
    top: -3.2rem;
    right: 0;
    width: 86px;
    padding: 1.1rem 0.4rem;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 20px 52px rgba(14, 92, 103, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-transform: uppercase;
}

.blog-card__date-badge-day {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-deep-teal);
    line-height: 1;
}

.blog-card__date-badge-month {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-graphite);
}

.blog-card__divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(47, 165, 160, 0.25) 0%, rgba(47, 165, 160, 0.05) 100%);
}

.blog-card__title {
    font-size: 1.22rem;
    line-height: 1.45;
    color: var(--color-deep-teal);
    margin: 0;
}

.blog-card__excerpt {
    color: var(--color-graphite);
    opacity: 0.85;
    margin: 0;
    flex-grow: 1;
}

.blog-card__footer {
    display: flex;
    justify-content: flex-start;
}

.blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-teal);
    text-decoration: none;
}

.blog-card__cta-text {
    font-weight: 600;
}

.blog-card__cta-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(47, 165, 160, 0.45);
    display: grid;
    place-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.blog-card__cta-icon i {
    font-size: 1.1rem;
}

.blog-card__cta:hover .blog-card__cta-icon {
    background: var(--color-teal);
    color: #fff;
    border-color: var(--color-teal);
    transform: translateX(4px);
}

.blog-card__cta:hover .blog-card__cta-text {
    text-decoration: underline;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.brand-card .blog-card__cta {
    margin-top: auto;
}

.blog-card__cta.blog-card__cta--inverse {
    color: var(--color-deep-teal);
    border: 1px solid rgba(47, 165, 160, 0.2);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
}

.blog-card__cta.blog-card__cta--inverse:hover {
    color: var(--color-teal);
    border-color: rgba(47, 165, 160, 0.35);
    background: rgba(47, 165, 160, 0.05);
}

.brand-product-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-product-card__media {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 1rem;
}

.brand-product-card__media img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
}

@media (max-width: 575px) {
    .blog-card {
        border-radius: 28px;
    }

    .blog-card__body {
        padding: 2.2rem 1.6rem 1.85rem;
    }

    .blog-card__header {
        padding-right: 5rem;
    }

    .blog-card__date-badge {
        top: -3rem;
    }
}

.footer {
    background: linear-gradient(135deg, rgba(14, 92, 103, 0.95), rgba(47, 165, 160, 0.85));
    color: #fff;
    position: relative;
}

.footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer a:hover {
    color: var(--color-aqua);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, #3FEFEA, #2FA5A0);
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 20px 50px rgba(14, 92, 103, 0.35);
    animation: pulse 2.5s infinite;
    z-index: 1050;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(63, 239, 234, 0.45);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(63, 239, 234, 0);
    }
}

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(47, 165, 160, 0.2), rgba(63, 239, 234, 0.8));
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-deep-teal);
    box-shadow: 0 0 0 7px rgba(63, 239, 234, 0.18);
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(14, 92, 103, 0.08);
}

.contact-form-card {
    transition: none !important;
}

.contact-form-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-soft) !important;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

@keyframes float {
    0%,
    100% {
        transform: translate3d(0, -6px, 0);
    }
    50% {
        transform: translate3d(0, 6px, 0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.95);
    }

    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-floating {
        gap: 1rem;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }

    .hero .swiper {
        padding-bottom: 3rem;
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.75rem 0 !important;
        font-size: 0.75rem;
    }

    .top-bar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .top-bar .d-flex {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }

    .top-bar .d-flex > div:first-child {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
    }

    .top-bar .d-flex > div:first-child span {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .top-bar .d-flex > div:first-child a {
        font-size: 0.7rem;
        margin-right: 0;
        white-space: nowrap;
    }

    .top-bar .d-flex > div:last-child {
        gap: 0.75rem !important;
        flex-shrink: 0;
    }

    .top-bar i {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 0.6rem 0 !important;
        font-size: 0.7rem;
    }

    .top-bar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .top-bar .d-flex {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .top-bar .d-flex > div:first-child {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }

    .top-bar .d-flex > div:first-child span {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .top-bar .d-flex > div:first-child a {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .top-bar .d-flex > div:last-child {
        gap: 0.75rem !important;
        flex-shrink: 0;
    }

    .top-bar i {
        font-size: 0.8rem;
    }

    .hero-floating__item {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reference-marquee__inner,
    .references-arc-gallery,
    .hero-floating__item,
    .hero .shape {
        animation: none !important;
    }
}


