﻿/* ============================================================
                   RESET & BASE
                   ============================================================ */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #333;
   background-color: #f8f9fa;
   line-height: 1.6;
   padding-top: 96px;
}

a {
   text-decoration: underline;
   color: inherit;
}

a:hover,
a:focus {
   text-decoration: underline;
   opacity: 0.8;
}

.nav-menu a {
   text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus {
   text-decoration: underline;
}

.offer-card a {
   text-decoration: none;
}

img {
   max-width: 100%;
   display: block;
   height: auto;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.section-padding {
   padding: 60px 0;
}

.section-title {
   font-size: 2.2rem;
   font-weight: 700;
   text-align: center;
   margin-bottom: 40px;
   color: #1a1a1a;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.section-title span {
   color: #6c757d;
}

.bg-light-gray {
   background-color: #f1f3f5;
}

.text-center {
   text-align: center;
}

.lead {
   font-size: 1.2rem;
   color: #1a1a1a;
}

.mb-5 {
   margin-bottom: 40px;
}

.mt-4 {
   margin-top: 30px;
}

.mb-0 {
   margin-bottom: 0;
}

/* ============================================================
                   FADE-UP ANIMATION - WIDOCZNE OD RAZU
                   ============================================================ */
.fade-up {
   opacity: 1;
   transform: translateY(0);
   transition: none;
}

/* ============================================================
                   TOP LANGUAGE BAR - FIXED
                   ============================================================ */
.lang-top-bar {
   background-color: #111;
   padding: 6px 0;
   border-bottom: 1px solid #333;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 9999;
   transition: transform 0.3s ease;
}

.lang-top-bar .lang-list {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 2px 6px;
}

.lang-top-bar a {
   color: #ffffff;
   font-size: 0.8rem;
   font-weight: 600;
   padding: 4px 10px;
   border-radius: 3px;
   transition: all 0.2s ease;
   text-decoration: none;
}

.lang-top-bar a:hover,
.lang-top-bar a:focus,
.lang-top-bar a.active {
   color: #ffffff;
   background-color: rgba(255, 255, 255, 0.12);
   text-decoration: none;
}

.lang-top-bar .divider {
   color: #ffffff;
   font-size: 0.8rem;
   font-weight: 600;
}

.lang-top-bar.hidden {
   transform: translateY(-100%);
}

/* ============================================================
                   NAVBAR - FIXED
                   ============================================================ */
.navbar {
   background-color: #1a1a1a;
   padding: 0;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
   position: fixed;
   top: 34px;
   left: 0;
   width: 100%;
   z-index: 9998;
   transition: top 0.3s ease;
}

.navbar .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
}

.navbar .logo img {
   max-height: 60px;
   padding: 5px 0;
   width: 180px;
   height: auto;
   aspect-ratio: 2 / 1;
   object-fit: contain;
}

.navbar .logo:hover {
   opacity: 0.8;
}

.navbar .nav-menu {
   display: flex;
   list-style: none;
   gap: 5px;
}

.navbar .nav-menu a {
   color: #ddd;
   font-weight: 500;
   text-transform: uppercase;
   font-size: 0.85rem;
   padding: 18px 15px;
   display: block;
   transition: color 0.3s ease;
   text-decoration: none;
}

.navbar .nav-menu a:hover,
.navbar .nav-menu a:focus,
.navbar .nav-menu a.active {
   color: #fff;
   border-bottom: 3px solid #f8b400;
   text-decoration: none;
}

.navbar .menu-toggle {
   display: none;
   background: none;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 4px;
   padding: 8px 12px;
   cursor: pointer;
   color: #fff;
   font-size: 1.5rem;
   min-width: 44px;
   min-height: 44px;
}

.navbar .menu-toggle:hover,
.navbar .menu-toggle:focus {
   background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
                   HERO SLIDER
                   ============================================================ */
.hero-slider {
   position: relative;
   overflow: hidden;
   margin-top: 0;
   background: #1a1a1a;
}

.hero-slider .slides {
   display: flex;
   transition: transform 0.6s ease;
}

.hero-slider .slide {
   min-width: 100%;
   height: 70vh;
   min-height: 400px;
   position: relative;
   overflow: hidden;
   background: #1a1a1a;
   display: flex;
   align-items: center;
   justify-content: center;
}

.hero-slider .slide .slide-bg {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   display: block;
   flex-shrink: 0;
}

.hero-slider .slide .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.25);
   pointer-events: none;
}

.hero-slider .slide-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   color: #fff;
   z-index: 2;
   width: 90%;
   max-width: 800px;
   pointer-events: none;
}

.hero-slider .slide-content * {
   pointer-events: auto;
}

.hero-slider .slide-content h1 {
   font-size: 3.5rem;
   font-weight: 700;
   text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
   margin-bottom: 15px;
   letter-spacing: 2px;
}

.hero-slider .slide-content h1 span {
   color: #f8b400;
}

.hero-slider .slide-content p {
   font-size: 1.2rem;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
   margin-bottom: 30px;
   opacity: 0.9;
}

.hero-slider .slide-content .btn-hero {
   display: inline-block;
   padding: 14px 45px;
   background: #f8b400;
   color: #1a1a1a;
   font-weight: 700;
   font-size: 1.1rem;
   border-radius: 50px;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   box-shadow: 0 4px 20px rgba(248, 180, 0, 0.4);
   text-decoration: none;
}

.hero-slider .slide-content .btn-hero:hover,
.hero-slider .slide-content .btn-hero:focus {
   background: #ffc107;
   transform: scale(1.05);
   box-shadow: 0 6px 30px rgba(248, 180, 0, 0.6);
   text-decoration: underline;
}

.hero-slider .slider-controls {
   position: absolute;
   top: 50%;
   width: 100%;
   transform: translateY(-50%);
   display: flex;
   justify-content: space-between;
   padding: 0 20px;
   pointer-events: none;
   z-index: 3;
}

.hero-slider .slider-controls button {
   pointer-events: auto;
   background: rgba(0, 0, 0, 0.5);
   border: none;
   color: #fff;
   font-size: 2rem;
   padding: 15px 20px;
   border-radius: 50%;
   cursor: pointer;
   transition: background 0.3s;
   min-width: 50px;
   min-height: 50px;
}

.hero-slider .slider-controls button:hover,
.hero-slider .slider-controls button:focus {
   background: rgba(0, 0, 0, 0.8);
   outline: 2px solid #f8b400;
}

.hero-slider .dots {
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 18px;
   z-index: 3;
}

.hero-slider .dots button {
   width: 44px;
   height: 44px;
   min-width: 44px;
   min-height: 44px;
   border-radius: 50%;
   border: 2px solid rgba(255, 255, 255, 0.7);
   background: transparent;
   cursor: pointer;
   padding: 0;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}

.hero-slider .dots button::before {
   content: "";
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.7);
   transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider .dots button.active::before {
   background: #f8b400;
   transform: scale(1.2);
}

.hero-slider .dots button:hover,
.hero-slider .dots button:focus {
   background: rgba(248, 180, 0, 0.15);
   outline: 2px solid #f8b400;
}

/* ============================================================
                   ABOUT
                   ============================================================ */
#about {
   background-color: #fff;
}

.about-text {
   font-size: 1.1rem;
   line-height: 1.8;
   color: #444;
   max-width: 1000px;
   margin: 0 auto;
}

.about-text strong {
   color: #1a1a1a;
}

/* ============================================================
                   OFFER CARDS
                   ============================================================ */
.offer-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 25px;
}

.offer-card {
   background: #fff;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e9ecef;
   display: flex;
   flex-direction: column;
   text-decoration: none;
}

.offer-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.offer-card .card-img {
   width: 100%;
   aspect-ratio: 3 / 2;
   overflow: hidden;
   background: #f8f9fa;
   display: flex;
   align-items: center;
   justify-content: center;
   border-bottom: 3px solid #f8b400;
}

.offer-card .card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.offer-card .card-body {
   padding: 20px;
   text-align: center;
   flex: 1;
}

.offer-card .card-title {
   font-weight: 700;
   font-size: 1.2rem;
   color: #1a1a1a;
   margin-bottom: 8px;
}

.offer-card .card-text {
   color: #6c757d;
   font-size: 0.9rem;
   margin-bottom: 12px;
}

.offer-card .btn {
   display: inline-block;
   padding: 8px 25px;
   border: 2px solid #1a1a1a;
   border-radius: 30px;
   font-weight: 600;
   font-size: 0.85rem;
   color: #1a1a1a;
   transition: all 0.3s ease;
   text-decoration: none;
}

.offer-card .btn:hover,
.offer-card .btn:focus {
   background-color: #1a1a1a;
   color: #fff;
}

/* ============================================================
                   CATEGORIES
                   ============================================================ */
.categories-section {
   background-color: #fff;
}

.categories-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

.category-box {
   background: #f8f9fa;
   border-radius: 8px;
   padding: 15px 20px;
   border: 1px solid #e9ecef;
   transition: all 0.3s ease;
}

.category-box:hover {
   background: #fff;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-color: #f8b400;
}

.category-box .cat-main {
   font-weight: 700;
   color: #1a1a1a;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   padding: 8px 0;
   background: none;
   border: none;
   width: 100%;
   text-align: left;
}

.category-box .cat-main:hover,
.category-box .cat-main:focus {
   color: #f8b400;
}

.category-box .cat-main .arrow {
   color: #525252;
   font-size: 0.8rem;
   transition: transform 0.3s ease;
}

.category-box .cat-main .arrow.open {
   transform: rotate(180deg);
}

.category-box .cat-sub {
   list-style: none;
   padding-left: 10px;
   display: none;
   max-height: 500px;
   overflow-y: auto;
}

.category-box .cat-sub.open {
   display: block;
}

.category-box .cat-sub li {
   padding: 4px 0 4px 10px;
   border-left: 2px solid #e9ecef;
   font-size: 0.9rem;
   color: #555;
}

.category-box .cat-sub li a {
   color: #1a1a1a;
   transition: color 0.3s;
   text-decoration: none;
}

.category-box .cat-sub li a:hover,
.category-box .cat-sub li a:focus {
   color: #f8b400;
   text-decoration: underline;
}

/* ============================================================
                   NOWOŚCI
                   ============================================================ */
#news {
   background-color: #f1f3f5;
}

.news-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 25px;
}

.news-card {
   background: #fff;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e9ecef;
   display: flex;
   flex-direction: column;
   text-decoration: none;
}

.news-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-card .news-img {
   width: 100%;
   aspect-ratio: 3 / 2;
   overflow: hidden;
   background: #f8f9fa;
   display: flex;
   align-items: center;
   justify-content: center;
   border-bottom: 3px solid #f8b400;
}

.news-card .news-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.news-card .card-body {
   padding: 20px;
   text-align: center;
   flex: 1;
}

.news-card .card-title {
   font-weight: 700;
   font-size: 1.1rem;
   color: #1a1a1a;
   margin-bottom: 8px;
}

.news-card .card-text {
   color: #6c757d;
   font-size: 0.9rem;
}

.news-card .badge {
   display: inline-block;
   background: #f8b400;
   color: #1a1a1a;
   padding: 3px 12px;
   border-radius: 20px;
   font-size: 0.7rem;
   font-weight: 700;
   text-transform: uppercase;
   margin-bottom: 10px;
}

.news-btn-wrapper {
   text-align: center;
   margin-top: 30px;
}

.news-btn-wrapper .btn {
   display: inline-block;
   padding: 12px 40px;
   background: #1a1a1a;
   color: #fff;
   border-radius: 50px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   text-decoration: none;
}

.news-btn-wrapper .btn:hover,
.news-btn-wrapper .btn:focus {
   background: #f8b400;
   color: #1a1a1a;
   text-decoration: underline;
}

/* ============================================================
                   GALLERY
                   ============================================================ */
#gallery {
   background-color: #fff;
}

.gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 15px;
}

.gallery-item {
   cursor: pointer;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   aspect-ratio: 1 / 1;
   background: #f8f9fa;
}

.gallery-item:hover {
   transform: scale(1.05);
}

.gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

/* ============================================================
                   LIGHTBOX
                   ============================================================ */
.lightbox-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.92);
   z-index: 99999;
   justify-content: center;
   align-items: center;
   cursor: pointer;
}

.lightbox-overlay.active {
   display: flex;
}

.lightbox-overlay .lightbox-content {
   position: relative;
   max-width: 90%;
   max-height: 90%;
}

.lightbox-overlay .lightbox-content img {
   max-width: 100%;
   max-height: 85vh;
   width: auto;
   height: auto;
   object-fit: contain;
   border-radius: 8px;
}

.lightbox-overlay .close-btn {
   position: absolute;
   top: -50px;
   right: 0;
   color: #fff;
   font-size: 3rem;
   cursor: pointer;
   background: none;
   border: none;
   min-width: 44px;
   min-height: 44px;
}

.lightbox-overlay .close-btn:hover,
.lightbox-overlay .close-btn:focus {
   transform: rotate(90deg);
   outline: 2px solid #f8b400;
}

.lightbox-overlay .nav-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: rgba(255, 255, 255, 0.15);
   border: none;
   color: #fff;
   font-size: 2.5rem;
   padding: 15px 20px;
   cursor: pointer;
   border-radius: 50%;
   transition: background 0.3s;
   min-width: 50px;
   min-height: 50px;
}

.lightbox-overlay .nav-btn:hover,
.lightbox-overlay .nav-btn:focus {
   background: rgba(255, 255, 255, 0.3);
   outline: 2px solid #f8b400;
}

.lightbox-overlay .prev-btn {
   left: -70px;
}

.lightbox-overlay .next-btn {
   right: -70px;
}

.lightbox-overlay .counter {
   position: absolute;
   bottom: -40px;
   left: 50%;
   transform: translateX(-50%);
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
}

/* ============================================================
                   CONTACT
                   ============================================================ */
#contact {
   background-color: #f1f3f5;
}

.contact-grid {
   display: grid;
   grid-template-columns: 5fr 7fr;
   gap: 40px;
}

.contact-info-box {
   background-color: #fff;
   padding: 35px 30px;
   border-radius: 8px;
   border-left: 5px solid #f8b400;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-box h4 {
   margin-bottom: 25px;
   font-size: 1.3rem;
   color: #1a1a1a;
}

.contact-info-box ul {
   list-style: none;
}

.contact-info-box ul li {
   padding: 10px 0;
   border-bottom: 1px solid #e9ecef;
   display: flex;
   align-items: center;
   gap: 12px;
   color: #1a1a1a;
}

.contact-info-box ul li:last-child {
   border-bottom: none;
}

.contact-info-box ul li .icon {
   flex-shrink: 0;
   width: 36px;
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #705200;
   color: #fff;
   border-radius: 50%;
   font-size: 0.9rem;
   font-weight: 700;
   transition: transform 0.3s ease;
}

.contact-info-box ul li:hover .icon {
   transform: scale(1.1);
}

.contact-info-box ul li strong {
   color: #1a1a1a;
}

.contact-info-box ul li a {
   color: #1a1a1a;
   transition: color 0.3s ease;
   text-decoration: none;
}

.contact-info-box ul li a:hover,
.contact-info-box ul li a:focus {
   color: #10498E;
}

.map-container {
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   height: 100%;
   min-height: 350px;
   background: #e9ecef;
}

.map-container iframe {
   width: 100%;
   height: 100%;
   min-height: 350px;
   border: 0;
}

.social-buttons {
   display: flex;
   gap: 12px;
   margin-top: 25px;
   flex-wrap: wrap;
}

.social-buttons .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 24px;
   border-radius: 6px;
   font-weight: 600;
   transition: all 0.3s ease;
   border: none;
   cursor: pointer;
   font-size: 0.95rem;
   text-decoration: none;
}

.btn-facebook {
   background: #10498E;
   color: #fff;
}

.btn-facebook:hover,
.btn-facebook:focus {
   background: #0d3c78;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(16, 73, 142, 0.4);
   text-decoration: none;
}

.btn-facebook::before {
   content: "f";
   font-weight: 700;
   font-size: 1.2rem;
}

/* ============================================================
                   FOOTER
                   ============================================================ */
.footer {
   background-color: #1a1a1a;
   color: #ccc;
   padding: 40px 0 20px;
}

.footer-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.footer h5 {
   color: #fff;
   font-size: 1.1rem;
   margin-bottom: 15px;
}

.footer a {
   color: #aaa;
   transition: color 0.3s;
   text-decoration: none;
}

.footer a:hover,
.footer a:focus {
   color: #f8b400;
   text-decoration: underline;
}

.footer ul {
   list-style: none;
}

.footer ul li {
   padding: 4px 0;
}

.footer .social-icons {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
}

.footer .social-icons a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   background: #333;
   border-radius: 50%;
   color: #fff;
   font-weight: 700;
   font-size: 1.1rem;
   transition: background 0.3s;
   text-decoration: none;
}

.footer .social-icons a:hover,
.footer .social-icons a:focus {
   background: #f8b400;
   text-decoration: none;
}

.footer .copyright {
   border-top: 1px solid #333;
   padding-top: 20px;
   margin-top: 30px;
   text-align: center;
   font-size: 0.9rem;
   color: #888;
}

.footer .copyright a {
   text-decoration: underline;
   color: #fff;
}

/* ============================================================
                   RESPONSIVE
                   ============================================================ */
@media (max-width: 992px) {
   body {
      padding-top: 90px;
   }

   .offer-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .categories-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .news-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
   }

   .contact-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .lightbox-overlay .prev-btn {
      left: 10px;
   }

   .lightbox-overlay .next-btn {
      right: 10px;
   }

   .hero-slider .slide-content h1 {
      font-size: 2.8rem;
   }

   .navbar .nav-menu a {
      font-size: 0.75rem;
      padding: 15px 10px;
   }
}

@media (max-width: 768px) {
   body {
      padding-top: 70px;
   }

   /* PASEK JĘZYKÓW ZNIKA */
   .lang-top-bar {
      display: none !important;
   }

   /* NAVBAR ZOSTAJE NA GÓRZE */
   .navbar {
      top: 0 !important;
   }

   /* SLIDER NA TELEFON */
   .hero-slider .slide {
      height: 45vh;
      min-height: 280px;
   }

   .hero-slider .slide-content h1 {
      font-size: 1.8rem;
   }

   .hero-slider .slide-content p {
      font-size: 0.95rem;
      margin-bottom: 20px;
   }

   .hero-slider .slide-content .btn-hero {
      padding: 10px 25px;
      font-size: 0.85rem;
   }

   .hero-slider .slider-controls button {
      font-size: 1.2rem;
      padding: 8px 12px;
      min-width: 36px;
      min-height: 36px;
   }

   .hero-slider .dots {
      bottom: 15px;
      gap: 8px;
   }

   .hero-slider .dots button {
      width: 10px;
      height: 10px;
   }

   .navbar .menu-toggle {
      display: block;
   }

   .navbar .nav-menu {
      display: none;
      width: 100%;
      flex-direction: column;
      padding: 10px 0;
      background: #1a1a1a;
   }

   .navbar .nav-menu.open {
      display: flex;
   }

   .navbar .nav-menu a {
      padding: 10px 15px;
      border-bottom: 1px solid #333;
      font-size: 0.8rem;
   }

   .offer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
   }

   .offer-card .card-img {
      aspect-ratio: 3 / 2;
   }

   .offer-card .card-body {
      padding: 12px;
   }

   .offer-card .card-title {
      font-size: 0.95rem;
   }

   .offer-card .card-text {
      font-size: 0.8rem;
   }

   .offer-card .btn {
      padding: 5px 15px;
      font-size: 0.75rem;
   }

   .categories-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
   }

   .category-box {
      padding: 10px 12px;
   }

   .category-box .cat-main {
      font-size: 0.85rem;
   }

   .news-grid {
      grid-template-columns: 1fr;
      max-width: 350px;
      margin: 0 auto;
   }

   .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .footer .social-icons {
      justify-content: center;
   }

   .section-title {
      font-size: 1.5rem;
      margin-bottom: 25px;
   }

   .section-padding {
      padding: 40px 0;
   }

   .lead {
      font-size: 1rem;
   }

   .mb-5 {
      margin-bottom: 25px;
   }

   .contact-grid {
      grid-template-columns: 1fr;
      gap: 25px;
   }

   .contact-info-box {
      padding: 20px;
   }

   .map-container {
      min-height: 250px;
   }

   .map-container iframe {
      min-height: 250px;
   }

   .lightbox-overlay .nav-btn {
      font-size: 1.2rem;
      padding: 8px 12px;
      min-width: 40px;
      min-height: 40px;
   }

   .lightbox-overlay .close-btn {
      top: -35px;
      font-size: 2rem;
   }

   .lightbox-overlay .counter {
      bottom: -30px;
   }

   .navbar .logo img {
      width: 140px;
      max-height: 45px;
   }

   .container {
      padding: 0 12px;
   }
}

@media (max-width: 480px) {
   body {
      padding-top: 60px;
   }

   .hero-slider .slide {
      height: 40vh;
      min-height: 220px;
   }

   .hero-slider .slide-content h1 {
      font-size: 1.4rem;
   }

   .hero-slider .slide-content p {
      font-size: 0.8rem;
      margin-bottom: 15px;
   }

   .hero-slider .slide-content .btn-hero {
      padding: 8px 18px;
      font-size: 0.75rem;
   }

   .hero-slider .slider-controls button {
      font-size: 1rem;
      padding: 5px 10px;
      min-width: 30px;
      min-height: 30px;
   }

   .offer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
   }

   .offer-card .card-img {
      aspect-ratio: 3 / 2;
   }

   .offer-card .card-body {
      padding: 10px;
   }

   .offer-card .card-title {
      font-size: 0.85rem;
   }

   .offer-card .card-text {
      font-size: 0.7rem;
      margin-bottom: 8px;
   }

   .offer-card .btn {
      padding: 4px 12px;
      font-size: 0.65rem;
   }

   .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
   }

   .categories-grid {
      grid-template-columns: 1fr;
   }

   .section-title {
      font-size: 1.2rem;
   }

   .navbar .logo img {
      width: 110px;
      max-height: 38px;
      padding: 3px 0;
   }

   .navbar .menu-toggle {
      font-size: 1.2rem;
      padding: 5px 10px;
      min-width: 36px;
      min-height: 36px;
   }

   .container {
      padding: 0 10px;
   }

   .section-padding {
      padding: 30px 0;
   }

   .contact-info-box ul li {
      font-size: 0.85rem;
      padding: 8px 0;
   }

   .contact-info-box ul li .icon {
      width: 28px;
      height: 28px;
      font-size: 0.7rem;
   }

   .social-buttons .btn {
      padding: 8px 16px;
      font-size: 0.8rem;
   }

   .footer {
      padding: 25px 0 15px;
   }

   .footer h5 {
      font-size: 0.95rem;
   }

   .footer .copyright {
      font-size: 0.75rem;
   }

   .news-card .card-body {
      padding: 12px;
   }

   .news-card .card-title {
      font-size: 0.95rem;
   }

   .news-btn-wrapper .btn {
      padding: 10px 25px;
      font-size: 0.8rem;
   }

   .lightbox-overlay .nav-btn {
      font-size: 1rem;
      padding: 5px 10px;
      min-width: 32px;
      min-height: 32px;
   }

   .lightbox-overlay .close-btn {
      top: -30px;
      font-size: 1.8rem;
      min-width: 32px;
      min-height: 32px;
   }
}
/* ============================================================
                   FOOTER
                   ============================================================ */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #f8b400;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact span {
    margin-right: 8px;
}

.footer-col a {
    color: #aaa;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus {
    color: #f8b400;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 4px 0;
}

.footer-links li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover,
.footer-links li a:focus {
    color: #f8b400;
    text-decoration: underline;
}

.footer-copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.footer-copyright a {
    color: #888;
    text-decoration: none;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
    color: #f8b400;
    text-decoration: underline;
}

/* ============================================================
                   RESPONSIVE - FOOTER
                   ============================================================ */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col h5 {
        display: block;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}