﻿body {
    font-family: 'Inter', 'Noto Sans Georgian', system-ui, sans-serif;
    color: var(--color-ink);
    overflow-x: hidden;
}

/* =========================================
   1. GLOBAL & RESETS
   ========================================= */
.card-list {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}

/* Base card transitions */
.card {
    transition: all 0.3s ease !important;
}

/* =========================================
   2. TOPBAR & NAVBAR
   ========================================= */
.topbar {
    background-color: #0d6efd;
    color: white;
    /* position: sticky;
    top: 0;
    z-index: 99999; */
}

.sticky_pos{
    position: sticky;
    top: 0;
    z-index: 99999;
}

.topbar .btn-outline-dark {
    border-color: white;
    color: white;
}

.topbar .btn-outline-dark:hover {
    background-color: white;
    color: #0d6efd;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0d6efd;
}

/* Topbar Mobile */
@media (max-width: 576px) {
    .topbar .container {
        gap: 0.5rem;
        text-align: center;
    }

    .topbar .btn-outline-dark {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* =========================================
   3. CAROUSEL (HERO SECTION)
   ========================================= */
/* Carousel Image */
.carousel-img {
    height: 75vh;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 6s ease;
}

/* Caption container */
.carousel-caption {
    bottom: 22%;
    text-align: left;
    max-width: 650px;
}

/* Title */
.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

/* Subtitle */
.carousel-caption p {
    font-size: 1.15rem;
    opacity: 0.95;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
}

/* Indicators */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 25px;
    border-radius: 10px;
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-img {
        height: 45vh;
    }

    .carousel-caption {
        bottom: 15%;
        text-align: center;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}


/* =========================================
   4. SHIPPING SWIPER (FIRST SLIDER)
   ========================================= */
.swiper-main-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.card-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

/* Truck Card */
.truck-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.truck-badge {
    background: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    margin-top: 12px;
}

.truck-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0;
    color: #222;
}

/* Specs list */
.truck-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    font-size: 0.9rem;
    color: #555;
}

.truck-specs li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.truck-specs i {
    color: #0d6efd;
}

/* Footer */
.truck-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.truck-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d6efd;
}

.card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-item .card-link:hover {
    border-color: #5372f0;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.card-link .badge {
    color: #5372f0;
    margin: 16px 0 18px;
    padding: 8px 16px;
    background: #dde4ff;
    border-radius: 50px;
    display: inline-block;
}

.card-link .card-button {
    height: 35px;
    width: 35px;
    color: #5372f0;
    border-radius: 50%;
    border: 2px solid #5372f0;
    background: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-link:hover .card-button {
    color: #fff;
    background: #5372f0;
    transform: rotate(-45deg);
}

/*5*/

/* Modern Blog Card */
.blog-card-modern {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card-modern:hover {

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Image */
.blog-card-modern .blog-img {
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

/* Category tag */
.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0d6efd;
    color: #fff;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Title */
.blog-card-modern .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* Meta */
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-meta i {
    margin-right: 6px;
    color: #0d6efd;
}

/* Buttons */
.icon-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Mobile fix */
@media (max-width: 768px) {
    .blog-card-modern .blog-img {
        min-height: 200px;
    }
}


/* =========================================
   6. COMMON SWIPER ELEMENTS (PAGINATION & BUTTONS)
   ========================================= */
.swiper-button-prev,
.swiper-button-next {
    color: #5372f0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination {
    position: relative;
}

.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px;
    background: #5372f0;
}

/* =========================================
   7. SERVICES & ABOUT US
   ========================================= */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.service-card:hover {
    background-color: #5397fd !important;
    color: white !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon animation */
.service-card .icon-box {
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.15) rotate(6deg);
}

/* Icon color */
.service-card:hover .icon-box i {
    color: #fff !important;
}

/* Text color fix */
.service-card h5,
.service-card p {
    transition: color 0.3s ease;
}

.service-card:hover h5,
.service-card:hover p {
    color: #fff !important;
}

.about-experience {
    border-left: 5px solid white;
}

/* UTILS */
.brightness-0 {
    filter: brightness(0);
}

.invert {
    filter: invert(1);
}

/* About me */

:root {
    --color-bg: #ffffff;
    --color-ink: #0b1220;
    --color-accent: #0b6efd;
    --color-accent-700: #0957c6;
    --color-muted: #6b7280;
    --color-success: #059669;
    --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04);
    --shadow-md: 0 6px 18px rgba(11, 18, 32, 0.08);
    --shadow-lg: 0 12px 32px rgba(11, 18, 32, 0.12);
    --container-max: 1120px;
    --radius-lg: 1rem;
    --radius-md: 0.5rem;
    --focus-ring: 3px solid rgba(11, 110, 253, 0.18);
    --transition-fast: 160ms;
    --transition-med: 320ms;
    --transition-slow: 500ms;
}



/* =========================
   ACCESSIBILITY + UI UTILS
   ========================= */
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: scale(1); }
}
.modal.show .modal-dialog { animation: modalFadeIn 200ms ease-out; }

.skip-link{
  position:absolute; top:-40px; left:0;
  background: var(--color-accent, #0d6efd);
  color:#fff; padding:8px 16px; z-index:1000;
  text-decoration:none; border-radius:0 0 4px 0;
}
.skip-link:focus{ top:0; }

*:focus-visible{ outline:2px solid #0d6efd; outline-offset:2px; }

.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

@media print{
  .topbar, .navbar, footer, .hero__cta-secondary, #quote-form, .modal, .hero-buttons{ display:none!important; }
  .hero__title-ka, .hero__title-en{ color:#000!important; }
  #hero{ background:none!important; color:#000!important; }
  a[href]:after{ content:" (" attr(href) ")"; }
}

/* =========================
   HERO (About Us)
   - FULL WIDTH/FULL HEIGHT BLUR
   ========================= */
#hero{
  position: relative;
  min-height: 100vh;
  display: block;
  color: #fff;

  background: url(../images/daf.jpg) center/cover no-repeat;
}

/* optional overlay (შენსას დავუტოვე) */
.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top right, rgba(13,110,253,0.25), transparent 60%);
  z-index: 1;
}

/* ✅ BLUR layer full screen */
.hero__container{
  position: absolute;
  inset: 0;                 /* full width + full height */
  width: 100%;
  height: 100%;
  z-index: 2;

  display: flex;
  align-items: center;      /* ცენტრში ვერტიკალურად */
  justify-content: center;

  padding: clamp(24px, 5vw, 64px);

  /* blur works უკეთ როცა ფონიც აქვს (alpha) */
  background: rgba(11, 18, 32, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* კონტენტის სიგანის კონტროლი */
.hero__content{
  width: 100%;
  max-width: 1120px;
}

.hero__title-ka{ font-size: clamp(2rem, 4vw, 3rem); line-height:1.2; }
.hero__title-en{ font-size: clamp(1.1rem, 2vw, 1.4rem); opacity: .92; }
.hero__subtitle{ font-size:1.05rem; max-width:700px; color: rgba(255,255,255,0.88); }

.hero-buttons .btn{ transition: transform .25s ease, box-shadow .25s ease; }
.hero-buttons .btn:hover{ transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }

/* =========================================
           CONTENT SECTIONS
           ========================================= */
.canonical-block {
    border-left: 4px solid var(--color-accent);
    background-color: #f8f9fa;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
}

.canonical-block blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.canonical-block ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.canonical-block li {
    margin-bottom: 0.25rem;
}

.about-experience {
    border-left: 5px solid white;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

/* =========================================
           CERTIFICATES
           ========================================= */
.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* =========================================
           TESTIMONIALS
           ========================================= */
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-md) !important;
    background-color: var(--color-accent) !important;
    color: white !important;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
}

/* =========================================
           FAQ
           ========================================= */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--color-accent);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

/* =========================================
           ANIMATIONS & INTERACTIONS
           ========================================= */
.btn:active {
    transform: translateY(1px);
    transition-duration: 80ms;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-md);
    background-color: var(--color-accent) !important;
    color: white !important;
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background-color: #0957c6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* =========================================
   GALLERY STYLES
   ========================================= */
.gallery-card {
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.gallery-card img {
    transition: all 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Gallery public page - fixed height images */
.gallery-img-wrap {
    display: block;
    background: #f3f4f6;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-btn.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

/* =========================================
   FORM VALIDATION STYLES
   ========================================= */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
}

/* =========================================
   SMOOTH SCROLLING
   ========================================= */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   CONTACT PAGE ALIGNMENT
   ========================================= */
.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-item .icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.contact-info-item .icon-box i {
    font-size: 1.1rem;
}

.contact-info-item .content {
    flex-grow: 1;
}

.contact-info-item h5 {
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.social-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icons-wrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.service-wide {
    max-width: calc(25% * 4);
    margin-left: auto;
    margin-right: auto;
}

/* Tablet & mobile */
@media (max-width: 1199px) {
    .service-wide {
        max-width: 100%;
    }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes for staggered animations */
.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.seeMore {
    background-color: white;
    border: none;
    color: var(--color-accent-700);

    &:hover {
        text-decoration: underline;
    }
}



.btn-arrow-link {
    text-decoration: none;
    color: #0b1220;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-arrow-link i {
    transition: transform 0.3s ease;
}

.btn-arrow-link:hover {
    color: #0d6efd;
}

.btn-arrow-link:hover i {
    transform: translateX(8px); /* Moves arrow to the right on hover */
}




/* =========================
   SHIPPING CARDS (clean)
   ========================= */
.card {
    transition: 0.5ms;
}

.shipping-cards {
    --sc-radius: 18px;
    --sc-shadow: 0 18px 50px rgba(11, 18, 32, 0.16);
    --sc-stroke: rgba(255, 255, 255, 0.16);
}

/* ✅ ქარდი სიგანეში გაზრდა */
.shipping-card--wide {
    width: 36rem;
    /* 34-40rem */
}

@media (max-width: 768px) {
    .shipping-card--wide {
        width: 100%;
    }
}

.shipping-card {
    border: 0 !important;
    border-radius: var(--sc-radius) !important;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    background: transparent;
}

/* height იგივე დავტოვეთ */
.shipping-card__media1,.shipping-card__media2 {
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    overflow: hidden;
    height:350px;
    background-image: url(../images/cardTax/cardTax1.jpg);  
    background-size: cover;
}
@media (max-width: 768px) {
    .shipping-card__media1,.shipping-card__media2 {
        height: 100%;
    }
}
.shipping-card__media2{
    background-image: url(../images/cardTax/cargo.jpg);  

}

.shipping-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 650ms ease, filter 650ms ease;
    filter: saturate(1.07) contrast(1.07);
}

/* ✅ overlay: ნაკლები blur, ფოტო კარგად ჩანს */
.shipping-card__overlay {
    inset: 0;
    display: flex;
    height: 100%;
    align-items: flex-end;
    padding: 16px;
    background:
        radial-gradient(900px 340px at 20% 0%, rgba(13, 110, 253, 0.18) 0%, rgba(13, 110, 253, 0) 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(11, 18, 32, 0.35) 55%, rgba(11, 18, 32, 0.62) 100%);
}

.shipping-card__content {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--sc-stroke);
    background: rgba(15, 23, 42, 0.20);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.shipping-card__title {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.shipping-card__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.55;
}

/* ✅ default ტექსტი ერთ სიმაღლეზე */
.clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    min-height: calc(1rem * 1.55 * 4);
}

.shipping-card__actions {
    margin-top: 12px;
}

.shipping-card__btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 10px 14px;
}

/* hover */
.shipping-card:hover .shipping-card__img {
    filter: saturate(1.12) contrast(1.1);
}

/* ✅ “… მეტი” ღილაკი: ყოველთვის ჩანს */
.seeMore {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: opacity 200ms ease;
}

/* default: ოდნავ დაბალი opacity */
.seeMore--faded {
    opacity: 0.55;
}

.seeMore--faded:hover {
    opacity: 0.8;
}

.section-coco {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-co {
    width: 88%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(193, 192, 192, 0.666);
    padding: 10px;
}
/* galley enhance */
/* =========================================
   GALLERY ENHANCEMENTS
   ========================================= */

.gallery-img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.1);
}

.gallery-hover-icon {
    position: absolute;
    inset: 0;
    background: rgba(209, 227, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.gallery-card:hover .gallery-hover-icon {
    opacity: 1;
}

/* --- LIGHTBOX MODAL --- */

#galleryLightbox .modal-content {
    background: rgba(10, 10, 12, 0.96) !important;
    backdrop-filter: blur(12px);
}

.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIXED NAVIGATION BUTTONS - ALWAYS AT EDGES */
.fixed-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 3rem;
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 2000;
    cursor: pointer;
}

.fixed-nav-btn:hover {
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: 50px; }
.next-btn { right: 50px; }

.lightbox-close-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    z-index: 2001;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.lightbox-close-btn:hover {
    opacity: 1;
    transform: rotate(3deg);
}

/* THE ART FRAME */
.art-frame-container {
    max-width: 80vw;
    max-height: 85vh;
    animation: frameAppear 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

@keyframes frameAppear {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.art-frame-white {
    background: white;
    padding: 12px; /* Thick white frame border */
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

#lightboxImg {
    display: block;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 2px;
    transition: opacity 0.2s ease-in-out;
}

.art-frame-details {
    padding: 20px 10px 10px;
    text-align: center;
    color: #1a1a1a;
}

.art-frame-details h4 {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.art-frame-details p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .prev-btn { left: 10px; font-size: 2rem; }
    .next-btn { right: 10px; font-size: 2rem; }
    .art-frame-container { max-width: 95vw; }
    .lightbox-close-btn { top: 20px; right: 20px; font-size: 2rem; }
}
footer a.text-decoration-none.text-secondary{
    transition: color 300ms ease;
}

footer a.text-decoration-none.text-secondary:hover{
    color: rgb(224, 224, 224) !important;
}

