/* ===================================================
   CASABA REKLAM – HEADER & NAV (FINAL / STABLE)
   Desktop + Mobile · Dropdown FIX
   =================================================== */

:root {
    --brand-blue: #0859A6;
    --brand-blue-dark: #064b8d;
}

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

body {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    color: #111;
    background: #fff;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===================================================
   HEADER
   =================================================== */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

/* Logo */
.logo img {
    height: 56px;
    width: auto;
}

/* ===================================================
   DESKTOP NAV
   =================================================== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a,
.nav-parent {
    text-decoration: none;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.nav-parent:hover {
    color: var(--brand-blue);
}

/* ---------- DROPDOWN ---------- */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 16px 18px;
    min-width: 260px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-group {
    margin-bottom: 14px;
}

.dropdown-group:last-child {
    margin-bottom: 0;
}

.dropdown-title {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
    font-size: 0.95rem;
}

.dropdown-menu a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #111;
}

.dropdown-menu a:hover {
    color: var(--brand-blue);
}

.single-link {
    font-weight: 500;
    margin-top: 6px;
}

/* ===================================================
   HEADER ICONS
   =================================================== */

.header-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.header-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-icons a:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}

/* ===================================================
   HAMBURGER
   =================================================== */

.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===================================================
   MOBILE NAV
   =================================================== */

.mobile-nav {
    display: none;
    position: static;   /* absolute kaldırıldı */
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 14px;
    padding: 1rem;
    border-top: 1px solid #e5e5e5;
}

.mobile-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #111;
}

/* Mobil dokunma (hover karşılığı) */
.mobile-nav a:active,
.mobile-nav a:focus {
    color: var(--brand-blue);
}

/* Details / Hizmetlerimiz */
.mobile-nav details {
    margin: 6px 0;
}

.mobile-nav summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav strong {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.mobile-nav details a {
    padding-left: 12px;
    font-size: 0.9rem;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 768px) {

    .header-inner {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 44px;
    }

    /* Desktop menu gizle */
    .main-nav {
        display: none;
    }

    /* Hamburger göster */
    .nav-toggle {
        display: block;
    }

    /* Açılan mobil menü */
    .mobile-nav.active {
        display: flex;
    }

    .site-header {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        position: relative;    
    }
}

/* Mobilde ikonları sağa yasla */
@media (max-width: 768px) {

    .header-icons {
        margin-left: auto;
        gap: 8px;
    }

    .header-icons a {
        width: 28px;
        height: 28px;
    }
}

/* ===================================================
   MOBILE MENU – FIXED & ORDERED
   =================================================== */

.mobile-nav details {
    display: block;
}

.mobile-nav summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    margin-bottom: 10px;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav details[open] summary {
    color: var(--brand-blue);
}

/* Ana servis linkleri (Tabela / Dijital Baskı) */
.mobile-nav .mobile-main-link {
    display: block;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 6px;
    color: #111;
    text-decoration: none;
}

/* Alt servis linkleri */
.mobile-nav details a {
    display: block;
    padding-left: 14px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Aralara boşluk */
.mobile-nav details a + a {
    margin-top: 4px;
}

/* En alttaki tekil servisler */
.mobile-nav details > a:not(.mobile-main-link) {
    padding-left: 0;
    margin-top: 10px;
    font-weight: 500;
}

/* =========================
   HERO – KUTU TASARIM
========================= */

.hero-box {
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero-inner {
    background: #ededed;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 20px;
    min-height: 460px;       /* Sabit yükseklik */
    display: grid;
    align-items: center;
}

/* SOL METİN */
.hero-text h1 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 32px;
}

/* CTA */
.hero-cta {
    display: flex;
    gap: 18px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 38px;              /* ⬅️ uzatıldı */
    font-size: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background: #0859A6;             /* CASABA MAVİ */
    color: #fff;
}

.btn-secondary {
    background: #25D366;
    color: #fff;
}

/* SAĞ GÖRSEL */
.hero-media {
    background: #ffffff;
    padding: 6px;                   /* ⬅️ beyaz kontur */
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hero-media img {
    width: 100%;
    max-width: 560px;
    height: auto;            /* ⬅️ bunu ekliyoruz */
    border-radius: 18px;
    display: block;
}

/* DOTLAR */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    background: #cfd8e3;
    border-radius: 50%;
}

.hero-dots .dot.active {
    background: #0859A6;             /* CASABA MAVİ */
}

/* MOBİL */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-media img {
        max-width: 100%;
    }
}

/* =========================
   HERO SLIDE SYSTEM
========================= */

.hero-slide {
    display: none;
}

/* Desktop aktif slide */
.hero-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

/* =========================
   HERO – MOBILE FIX
========================= */

@media (max-width: 768px) {

    .hero-inner {
        display: block;
    }

    .hero-slide {
        display: none;
    }

    /* Mobilde aktif slide */
    .hero-slide.active {
        display: block;
    }

    .hero-media {
        margin-top: 20px;
        text-align: center;
    }

    .hero-media img {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero-text p {
        font-size: 16px;
    }

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

    .hero-cta a {
        width: 100%;
        text-align: center;
    }
}

/* HERO 2+ için başlık–açıklama arası ekstra boşluk */
.hero-slide:not(:first-child) .hero-text h2 {
    margin-bottom: 15px;
}

/* =========================================
   REFERENCES – JS CONTROLLED MARQUEE (FINAL)
   - JS drives transform on .ref-list
   - No opacity / no hover effect
   - Bigger logos + tighter spacing
========================================= */

.references {
    padding: 80px 0;
}

.references .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.references h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

/* viewport */
.ref-track {
    overflow: hidden;
    width: 100%;
}

/* moving row (JS translates this element) */
.ref-list {
    display: flex;
    align-items: center;
    gap: 30px;                 /* 80 -> daha yakın */
    width: max-content;        /* önemli: içerik kadar genişlesin */
    will-change: transform;
}

/* logo */
.ref-list img {
    height: 75px;              /* 48 -> ~%33-35 daha büyük */
    width: auto;
    flex-shrink: 0;
    opacity: 1;                /* soluk yok */
    transition: none;          /* hover efekti yok */
}

/* hover etkisini tamamen iptal */
.ref-list img:hover {
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {

    .references {
        padding: 60px 0;
    }

    .references h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .ref-list {
        gap: 28px;             /* 40 -> daha yakın */
    }

    .ref-list img {
        height: 48px;          /* 36 -> daha büyük */
    }
}

/* ==========================================
   FEATURED SERVICES – PREMIUM SEO VERSION
========================================== */

.featured-services {
    padding: 120px 0;
    background: #f7f9fc;
}

.featured-services h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 12px;
    font-weight: 700;
}

.featured-services .section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px auto;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

/* CARD */

.service-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1),
                box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

/* Hover – premium lift */

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* CONTENT AREA */

.service-card h3 {
    padding: 22px 20px 8px 20px;
    font-size: 19px;
    font-weight: 600;
}

.service-card .service-desc {
    padding: 0 20px 25px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Tablet */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet */

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

/* Mobile */

@media (max-width: 768px) {

    .featured-services {
        padding: 80px 0;
    }

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

    .service-card img {
        height: 210px;
    }

    .service-card h3 {
        font-size: 18px;
    }
}

/* ==========================================
   WHY CASABA – PREMIUM LIGHT VERSION
========================================== */

.why-casaba {
    padding: 110px 0;
    background: #f4f7fb; /* Premium açık gri */
    color: #1e293b;
}

.why-casaba h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    color: #0f172a;
}

.why-intro {
    max-width: 850px;
    margin: 0 auto 70px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

/* İstatistik Alanı */

.why-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 15px;
    color: #64748b;
}

/* Grid Alanı */

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

.why-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0f172a;
}

.why-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Tablet */

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

/* Mobile */

@media (max-width: 768px) {

    .why-casaba {
        padding: 80px 0;
    }

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

    .why-stats {
        gap: 30px;
    }

    .stat-box span {
        font-size: 36px;
    }
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process-section {
    padding: 120px 0;
    background: #f2f4f7;
}

.process-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 15px;
}

.process-section .section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
    color: #555;
}

.process-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-slide {
    display: none;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    align-items: center;
    gap: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.process-slide.active {
    display: flex;
}

.process-media img {
    width: 120px;
    height: auto;
}

.process-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-text p {
    color: #555;
    line-height: 1.6;
}

.process-dots {
    text-align: center;
    margin-top: 30px;
}

.p-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.p-dot.active {
    background: #0859A6;
}

/* Mobile */
@media (max-width: 768px) {

    .process-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .process-media img {
        width: 90px;
    }
}

/* =========================
   CUSTOMER REVIEWS
========================= */

.customer-reviews {
    padding: 100px 20px;
    text-align: center;
    background: #f4f6f8;
}

.customer-reviews h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.reviews-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
}

.reviews-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 360px;
}

.review-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.review-stars {
    color: #ff9900;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.reviews-dots {
    margin-top: 40px;
}

.review-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    cursor: pointer;
}

.review-dot.active {
    background: #0d47a1;
}

@media (max-width: 1023px) {
    .reviews-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================
   PROJECTS SLIDER – FINAL CLEAN
============================= */

.projects-section {
    padding: 120px 0;
    background: #f4f6f8;
    text-align: center;
}

.projects-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.projects-desc {
    max-width: 720px;
    margin: 0 auto 60px;
    color: #666;
}

/* WRAPPER */

.projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* VIEWPORT */

.projects-viewport {
    overflow: hidden;
    width: 100%;
}

/* TRACK */

.projects-track {
    display: flex;
    gap: 30px;
}

/* CARD */

.project-card {
    flex: 0 0 calc((100% - 120px) / 5);
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* IMAGE */

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
}

/* CONTENT */

.project-content {
    background: #fff;
    padding: 22px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px; /* sabit yükseklik */
}

.project-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ARROWS */

.projects-arrow {
    position: absolute;
    background: #0859A6;
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.projects-arrow:hover {
    background: #064b8d;
    transform: scale(1.08);
}

.projects-arrow.left {
    left: -25px;
}

.projects-arrow.right {
    right: -25px;
}

/* DOTS */

.projects-dots {
    margin-top: 35px;
}

.projects-dots button {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.projects-dots button.active {
    background: #0859A6;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .project-card {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 992px) {
    .project-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {

    /* OKLARI MOBİLDE KALDIR */
    .projects-arrow {
        display: none;
    }

    /* HER SEFERİNDE 1 KART */
    .project-card {
        flex: 0 0 100%;
        padding: 0 20px;
    }

    /* DOTLAR MERKEZ */
    .projects-dots {
        margin-top: 25px;
    }

}

/* ================= PARTNERS – JS PAUSE VERSION ================= */

.partners-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.partners-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

/* VIEWPORT */
.partners-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* MOVING STRIP */
.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;       /* 🔥 sonsuzluk için kritik */
    will-change: transform;
}

/* LOGO */
.partners-track img {
    height: 55px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.partners-track img:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {

    .partners-track {
        gap: 35px;
    }

    .partners-track img {
        height: 46px;
    }
}

/* ================= FOOTER ================= */

.site-footer {
    background: #f4f7fb;
    color: #1e1e1e;
    padding: 70px 0 30px;
    font-size: 14px;
    border-top: 1px solid #e1e6ef;
}

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

.footer-col h3 {
    color: #0859A6;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a {
    color: #1e1e1e;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #0859A6;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e1e6ef;
    font-size: 13px;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* =========================
   SERVICE HERO V3 – FIXED
========================= */

.service-hero-v3 {
    background: #f2f4f7;
    padding: 0 0 120px 0; /* Üst padding kaldırıldı */
}

.hero-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

/* GÖRSEL ORANI SABİT */
.hero-image {
    width: 75%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MAVİ PANEL */
.hero-panel {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 700px;
    background: rgba(15, 45, 74, 0.88);
    backdrop-filter: blur(4px);
    padding: 40px 40px; /* düşürdük */
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-panel h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-panel p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #0859A6;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #fff;
    padding: 14px 28px;
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-image {
        width: 100%;
    }

    .hero-panel {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

}

/* =========================
   GLOBAL BUTTON RADIUS RESET
   ========================= */

.btn-primary,
.btn-secondary,
.btn-outline,
.header-cta .cta-icon,
.hero-buttons a,
a[class*="btn"] {
    border-radius: 0 !important;
}

/* ===============================
   FOOTER
=================================*/

.site-footer {
    background: #f5f7fa;
    padding: 60px 0 30px;
    font-size: 14px;
    color: #333;
}

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

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-col a {
    color: #0859A6;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Responsive */

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