/* ============================================
   Axiomed — Home page (modern redesign)
   ============================================ */

/* ============================================================
   1. HERO SLIDER
   ============================================================ */
#slider {
    position: relative;
    overflow: hidden;
}

#slider .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    z-index: 0;
}

#slider .carousel-inner {
    min-height: 540px;
}

#slider .carousel-item {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
}

#slider .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Remove old slidetext */
#slider .slidetext { display: none; }

#slider .box-text {
    color: #fff !important;
    padding: 0 0 0 8px;
}

#slider .box-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

#slider .box-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.82) !important;
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 420px;
}

#slider .box-text a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: var(--blue) !important;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(55,152,218,0.45);
}

#slider .box-text a:hover {
    background: var(--blue-dk) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55,152,218,0.55);
    text-decoration: none !important;
}

#slider .large-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 460px;
}

#slider .car-img {
    max-height: 380px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

.cr-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cr-icon:hover { background: rgba(255,255,255,0.28); }
.cr-icon i { color: #fff; font-size: 1rem; }

/* ============================================================
   2. PRODUCTS CAROUSEL
   ============================================================ */
#mehsullar {
    padding: 60px 0 50px;
    background: var(--gray);
}

.product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.product-head h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.product-head-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}
.product-head-link:hover { border-color: var(--blue); text-decoration: none; }

/* Product cards */
#mehsullar .swiper-slide {
    height: auto;
}

#mehsullar .box1 {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#mehsullar .box1:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

#mehsullar .pic {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    background: #fafbfd;
}

#mehsullar .pic img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    width: auto !important;
}

#mehsullar .text2 {
    padding: 14px 16px;
    flex: 1;
}

#mehsullar .detailProduct p {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Replace SVG button with a clean text link */
#mehsullar .look {
    display: block;
    width: 100%;
    padding: 11px 0;
    background: var(--blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
#mehsullar .look:hover { background: var(--blue-dk); }
#mehsullar .look svg { display: none; }
#mehsullar .look span { display: none; }

/* Swiper nav buttons */
.swi-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.swiper-button-prevv,
.swiper-button-nextt {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-prevv:hover,
.swiper-button-nextt:hover {
    background: var(--blue);
    color: #fff;
}

/* ============================================================
   3. CATEGORIES GRID
   ============================================================ */
#items-section {
    padding: 60px 0;
}

#items-section .items-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: unset;
}

.cat-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    background: linear-gradient(135deg, #0f66a0 0%, #3798da 100%);
    box-shadow: 0 4px 24px rgba(15, 102, 160, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15, 102, 160, 0.28);
}

.cat-card a,
.cat-card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 20px;
    gap: 14px;
    box-sizing: border-box;
}

.cat-icon {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.cat-card h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.35;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.cat-card--dark {
    background: linear-gradient(145deg, #0f2a3f 0%, #0f4f7a 100%);
}

@media (max-width: 700px) {
    #items-section .items-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================================
   4. PARTNERS
   ============================================================ */
#brendler {
    background: #fff;
    padding: 50px 0 40px;
}

.basliq {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
}

.partners-swi {
    padding: 16px 0 24px;
}

.partners-swi .swiper { height: 90px; }

.partners-swi .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.partners-swi .swiper-slide:hover { opacity: 1; }

.partners-swi .swiper-slide img,
.partners-swi .swiper-slide svg {
    max-height: 60px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.25s;
}
.partners-swi .swiper-slide:hover img,
.partners-swi .swiper-slide:hover svg { filter: grayscale(0); }

.logo-line { display: none; }

.partners-more {
    margin-top: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.03em;
}

/* ============================================================
   5. WHY CHOOSE US
   ============================================================ */
#best-prices {
    padding: 80px 0;
    background: var(--gray);
}

#best-prices > .container > p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.7;
}

#best-prices .why-we-part > span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    margin-bottom: 24px;
}

#best-prices .big-icons {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#best-prices .big-icons li {
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}
#best-prices .big-icons li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
}

#best-prices .prices h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 20px;
}

#best-prices .qn-mark {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
}

#best-prices .buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#best-prices .btn_block {
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#best-prices .btn_block:hover { background: var(--blue); color: #fff; }
#best-prices .btn_block a { color: inherit; text-decoration: none; }

#best-prices .registrationn {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
#best-prices .registrationn:hover { background: var(--blue-dk); border-color: var(--blue-dk); }

/* ============================================================
   6. FIND US
   ============================================================ */
#stores-and-warehouses {
    background: var(--dark);
    color: #fff;
    padding: 0;
}

#stores-and-warehouses .layer { display: none; }

/* Full-bleed split: left panel (dark) + right panel (map) */
.findus-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.findus-left-panel {
    padding: 60px 48px 60px clamp(24px, calc((100vw - 1140px) / 2), 180px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    background: var(--dark);
}

.findus-left-panel .title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.title h1 {
    color: #fff;
}

.findus-right-panel {
    position: relative;
    min-height: 480px;
    padding:20px;
    margin: 20px;
    border-radius: var(--radius);
    
}

.findus-right-panel iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* Contact cards */
.findus-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.findus-card {
    display: flex;
    gap: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: background 0.2s;
}
.findus-card:hover { background: rgba(255,255,255,0.1); }

.findus-card-icon {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: #fff;
}

.findus-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.findus-card-body p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72) !important;
    margin: 0 0 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.findus-card-body p:last-child { margin-bottom: 0; }

.findus-card-body i {
    color: var(--blue);
    width: 13px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.findus-maplink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.findus-maplink:hover { opacity: 0.75; color: var(--blue); text-decoration: none; }

@media (max-width: 991px) {
    .findus-split { grid-template-columns: 1fr; }
    .findus-left-panel { padding: 48px 24px; }
    .findus-right-panel { min-height: 300px; }
}
@media (max-width: 600px) {
    .findus-right-panel { min-height: 240px; }
}

/* ============================================================
   7. BLOGS
   ============================================================ */
#video-section {
    padding: 70px 0 60px;
    background: #fff;
}

.bloglar-head.blog-head-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.bloglar-head.blog-head-2 h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.bloglar-head.blog-head-2 a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: opacity 0.2s;
}
.bloglar-head.blog-head-2 a:hover { opacity: 0.75; text-decoration: none; }

/* Blog swiper */
.my-swi-video .swiper-slide {
    height: auto;
}

/* Blog card */
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
    text-decoration: none;
}

.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.blog-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-body h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: auto;
}

.blog-card-link i { font-size: 0.65rem; transition: transform 0.2s; }
.blog-card:hover .blog-card-link i { transform: translateX(3px); }

.my-swi-video .swiper { height: auto; }
.my-swi-video .swiper-slide { padding-bottom: 4px; }

.swiper-pagination {
    margin-top: 28px;
    position: static;
}

.swiper-pagination-bullet-active {
    background: var(--blue) !important;
}

/* ============================================================
   8. CTA SECTION
   ============================================================ */
#starting-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a4a6e 100%);
    color: #fff;
}

#starting-section h1 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

#starting-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}

.stg-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.stg-btn .registration {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(55,152,218,0.4);
    white-space: nowrap;
}
.stg-btn .registration:hover {
    background: var(--blue-dk);
    transform: translateY(-2px);
}
.stg-btn .registration i { font-size: 1rem; }

@media (max-width: 767px) {
    .stg-btn { justify-content: flex-start; margin-top: 20px; }
}

/* Mission section */
#mission-section {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #edf2f7;
}

.mission-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.mission-label {
    display: inline-block;
    border: 1.5px solid #2278bc;
    color: #2278bc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    background: transparent;
}

.mission-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f2a3f;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.mission-quote {
    text-align: left;
    border-left: 4px solid #2278bc;
    padding: 8px 0 8px 28px;
    margin: 0 auto;
    max-width: 700px;
}

.mission-quote p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #374151;
    font-style: normal;
    margin: 0;
}

@media (max-width: 575px) {
    .mission-title { font-size: 1.8rem; }
    .mission-quote p { font-size: 0.95rem; }
    .mission-quote { padding-left: 18px; }
}
