
:root{
  --bg: #0b0b0b;
  --panel: #121212;
  --muted: #bfc6c9;
  --accent: #1a4d8f;
  --accent-light: #2d5f9f;
  --accent-dark: #0f3d7a;
  --gradient-primary: linear-gradient(135deg, #1a4d8f, #0f3d7a, #0a2d5a);
  --gradient-secondary: linear-gradient(90deg, #1a4d8f, #2d5f9f, #1a4d8f);
  --gradient-hero: linear-gradient(180deg, rgba(26, 77, 143, 0.05), rgba(15, 61, 122, 0.1));
  --gradient-card: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  --white: #ffffff;
  --container: 1150px;
  --radius: 10px;
  --gap: 20px;
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
body{
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(26, 77, 143, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(15, 61, 122, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
 main{
  background-color: #000000;
 }

/* Media defaults: images i videi responsivni bez gubitka omjera */
img, video{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 300px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
  position: relative;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #1a4d8f;
  border-radius: 2px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  width: 50%;
  margin: 0 auto;
  min-height: 250px;
}

.about-video:hover {
  transform: translateY(-5px);
}

.about-video video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius);
  background: #000;
  object-fit: cover;
  min-height: 250px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-video {
    width: 80%;
    min-height: 200px;
  }
  
  .about-video video {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
}

/* Topbar */
.topbar{
  font-weight: 700;
  background: linear-gradient(135deg, #1a4d8f, #0f3d7a);
  padding:8px 0;
  font-size:15px;
  color: white;
  min-height: 50px;
  box-shadow: 0 2px 10px rgba(26, 77, 143, 0.2);
  position: relative;
  overflow: hidden;
}
.topbar-inner{
  vertical-align: middle;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 5px;
}

.top .icon{ padding: 0 8px; display:inline-flex; align-items:center; color:#fff; text-decoration:none; }
.top a{
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top a:hover { opacity:.85; }
  
.top .icon {
  align-items: center;
  color:var(--muted);
  text-decoration:none;
}
.top{ margin-left: 0; margin-right: 0; }

/* Radno vrijeme u topbaru */
.top-hours{ display:block; color:#fff; font-size:14px; }
@media (max-width: 768px){
  .topbar-inner{ flex-direction: column; align-items: center; gap: 4px; }
  .top{ width: 100%; display:flex; justify-content:center; gap:12px; }
  .top-hours{ opacity:.95; }
}

/* Header */
.site-header{
  background: #0a0a0a;
  padding:18px 0;
  position:relative;
  border-bottom: 2px solid #1a4d8f;
  box-shadow: 0 2px 8px rgba(26, 77, 143, 0.15);
  z-index: 50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px
}
.brand img{
  height:56px;
  display:block}


/* Nav */
.main-nav{
  display:flex;
  gap:20px;
  align-items:center
}
.main-nav{ z-index: 60; }
.main-nav a{
  transition: all 0.3s ease;
  font-size: 17px;
  color:var(--white);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a4d8f, #0f3d7a);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover, .main-nav a.active{
  color:var(--white);
  transform: translateY(-2px);
}
.btn-cta{
  background: linear-gradient(135deg, #1a4d8f, #0f3d7a);
  color:var(--white);
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 2px 8px rgba(26, 77, 143, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1a4d8f, #2d5f9f, #1a4d8f);
  transition: left 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 77, 143, 0.25);
}

.btn-cta:hover::before {
  left: 0;
}

/* Mobile nav toggle (CSS-only) */
.nav-toggle-checkbox{
  display:none
}
.nav-toggle-label{
  display:none;
  cursor:pointer;
  font-size:22px;
  color:var(--white);
  padding:8px 10px
}
@media (max-width:880px){
  .main-nav{
    position:absolute;
    top:86px;
    right:20px;
    background:#000000;
    padding:14px;
    border-radius:10px;
    flex-direction:column;
    display:none;
    min-width:200px;
    box-shadow:0 8px 24px rgba(0,0,0,0.6)
  }
  .nav-toggle-label{
    display:block
  }
  .nav-toggle-checkbox:checked + .nav-toggle-label + .main-nav{
    display:flex
  }
  .btn-cta{
    display:none
  }
}

/* Hero */
.hero{
  position: relative;
  padding: 0; /* full-bleed video */
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 77, 143, 0.1), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 80px 0; /* vertical breathing room */
}
.hero h1{
  font-size:48px;
  margin:0 0 8px;
  color:var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  letter-spacing: -1px;
}
.lead{
  color:var(--muted);
  font-size:18px;
  margin:0 0 16px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
  border:6px solid rgba(0,0,0,0.4)
}
@media (max-width:900px){
  .hero-inner{
    text-align:left;
    min-height: 60vh;
  }
  .hero-image img{
    height:220px
  }
}

/* Mobile: place hero text 50px from the left edge and align left */
@media (max-width: 600px){
  /* Remove container left padding within hero to control exact offset */
  .hero .hero-inner.container{ padding-left: 0; }
  /* Offset hero textual content by 50px from the viewport left */
  .hero .hero-text{ margin-left: 50px; text-align: left; }
  /* Ensure button aligns left under the text */
  .hero .hero-text .btn{ display: inline-block; }
}

/* Sections */
section{
  padding:34px 0
}

/* Recenzije: dodatni prostor ispod da ne dodiruje/prekrije footer */
.reviews{ padding-bottom: 48px; } /* dodatno odmakni od plave crte iznad footera */
h1,h2{
  color:var(--white);
  font-weight: 700;
  line-height: 1.2;
}
h1{
  font-size:32px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h2{
  font-size:26px;
  margin-bottom:8px;
  letter-spacing: -0.3px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #1a4d8f;
  border-radius: 1px;
}

/* About */
.about p{
  color:var(--muted);
  line-height:1.7;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Reviews */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 u redu */
  gap:20px;
  margin-top:12px;
  color:var(--muted);
  justify-items: start; /* kartice poravnane ulijevo */
}
.review{
  background: var(--gradient-card);
  padding:16px;
  border-radius:10px;
  border-left:4px solid var(--accent);
  color:var(--muted);
  display:flex;
  flex-direction:column;
  height:auto;
  position: relative;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.15);
}
.review-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
  padding-right:56px; /* rezerviraj prostor za logo (32px + razmak) */
}
.review .avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
}
.review-meta .name{
  font-weight:800;
  color:#fff;
  white-space:normal;        /* dopusti prelamanje */
  word-break:break-word;     /* duga imena neka se prelome */
}
.review-meta .date{
  font-size:13px;
  color:#9aa0a6;
}
.review-link{ display:block; color:inherit; text-decoration:none; }
.review-link:hover{ text-decoration:none; }
.google-badge{
  position:absolute;
  top:12px;
  right:12px;
  width:32px;   /* diskretnije */
  height:32px;
  object-fit:contain;
  opacity:0.7;              /* diskretnije */
  transition:opacity .2s ease;
}
.review:hover .google-badge{ opacity:0.85; }
.review .stars{
  color:#FFD700;
  letter-spacing:2px;
  margin:6px 0 10px;
  font-size:18px;
}
.review-body{
  color:#e7eaee;
  line-height:1.6;
  display:-webkit-box;        /* clamp teksta */
  -webkit-line-clamp: 5;      /* broj redaka koji će se prikazati */
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: 5.4em;          /* približno visina 5 redaka za ujednačene kartice */
  line-clamp: 5;              /* kompatibilnost/lint */
  margin-bottom: 0;           /* kontroliramo razmak preko dividera */
}
.review-divider{
  margin-top:6px;             /* manji razmak ispod teksta */
  border-top:1px solid rgba(255,255,255,0.08);
  margin-bottom:5px;          /* traženi razmak ispod crte */
}

/* Responsive prelamanje za recenzije */
@media (max-width: 900px){
  .reviews-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  .review-header{ gap:10px; }
  .review .stars{ font-size:16px; }
  .review-body{
    display:block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    min-height: 0;
    font-size: 14px;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    overflow:auto;
  }
}
.review cite{
  display:block;
  margin-top:10px;
  color:#ddd;
  font-weight:700
}

/* Services */
.service-grid{
  display:grid;
  grid-template-columns: 1fr; /* svaka kartica zauzima punu širinu */
  gap:18px;
  margin-top:16px
}
.card{
  background: var(--gradient-card);
  padding:18px;
  border-radius:10px;
  border:1px solid rgba(0, 102, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 77, 143, 0.05), transparent);
  transition: left 0.6s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.15);
  border-color: rgba(26, 77, 143, 0.3);
}

.card:hover::before {
  left: 100%;
}
.card h3{
  margin-top:0
}

/* Video red unutar kartice */
.card-videos{
  display:flex;
  flex-wrap:nowrap; /* jedna linija, bez prelamanja */
  gap:12px;
  align-items:center;
  margin-top:12px;
  overflow-x:auto; /* ako ih je puno, horizontalni scroll */
  -webkit-overflow-scrolling: touch;
}

.card-videos video{
  height: 260px; /* veće prikazano */
  width: auto;   /* širina prema omjeru */
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  flex: 0 0 auto; /* ne sužavaj video, zadrži prirodnu širinu */
}
main{
  padding-bottom: 50px;
}
/* Gallery - responsive masonry-like grid */
      .gallery-container {
          display: flex;               /* 4 po redu */
          flex-wrap: wrap;
          gap: 20px;
          padding: 20px;
          justify-content: center;     /* centriraj zadnji red */
      }

      /* svaka slika zauzima 1/4 reda minus razmak */
      .gallery-container .gallery-item {
          flex: 0 1 calc(25% - 20px);
      }

      /* Gallery breakpoints */
      @media (max-width: 1100px){
        .gallery-container .gallery-item { flex: 0 1 calc(33.333% - 20px); }
      }
      @media (max-width: 800px){
        .gallery-container .gallery-item { flex: 0 1 calc(50% - 20px); }
      }
      @media (max-width: 520px){
        .gallery-container .gallery-item { flex: 0 1 100%; }
      }

      /* Video sekcija ispod galerije – grid 4 u redu, kao slike */
      .video-container {
          display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 20px;
          padding: 0 20px 20px;
      }

      /* Video grid breakpoints */
      @media (max-width: 1100px){
        .video-container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      }
      @media (max-width: 800px){
        .video-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      }
      @media (max-width: 520px){
        .video-container { grid-template-columns: 1fr; }
      }

      /* video pločica ponaša se kao slika u gridu */
      .video-container video {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 8px;
          transition: transform 0.3s ease;
          cursor: pointer;
      }

      .video-container video:hover {
          transform: scale(1.05);
      }

      .gallery-item {
          cursor: pointer;
          transition: transform 0.3s ease;
      }

      .gallery-item:hover {
          transform: scale(1.05);
      }

      .gallery-item img {
          width: 100%;
          height: auto;
          border-radius: 8px;
      }

      /* Sakrij dodatne slike svakog auta u gridu; koristi se za lightbox */
      .gallery-item .car-images {
          display: none;
      }

      .lightbox-overlay {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0, 0, 0, 0.8);
          display: none;
          z-index: 1000;
          opacity: 0;
          transition: opacity 0.3s ease;
          justify-content: center;
          align-items: center;
      }
      .lightbox-content {
          position: relative;
          max-width: 100%;
          max-height: 100vh;
          margin: 0 auto;
          background-color: transparent;
          border-radius: 0;
          padding: 0;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.3s ease;
      }

      .lightbox-image-container {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100vh;
      }

      .lightbox-image {
          width: 70vw;
          max-width: 70vw;
          max-height: 70vh;
          height: auto;
          object-fit: contain;
          display: block;
          margin: 0 auto;
          z-index: 1;
      }

      .lightbox-video {
          width: 70vw;
          max-width: 70vw;
          max-height: 70vh;
          height: auto;
          display: block;
          margin: 0 auto;
          background: transparent;
          z-index: 1;
      }

      .navigation-buttons {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 100%;
          display: flex;
          justify-content: space-between;
          z-index: 2;
      }

      .nav-button {
          background-color: rgba(255, 255, 255, 0.1);
          border: none;
          color: white;
          padding: 15px;
          cursor: pointer;
          transition: background-color 0.3s ease;
      }

      .nav-button:hover {
          background-color: rgba(255, 255, 255, 0.2);
      }

      .close-button {
          position: absolute;
          top: 15px;
          right: 15px;
          background-color: rgba(255, 255, 255, 0.1);
          border: none;
          color: white;            
          padding: 10px;
          cursor: pointer;
          font-size: 24px;
          transition: background-color 0.3s ease;
          z-index: 3;
      }

      .close-button:hover {
          background-color: rgba(255, 255, 255, 0.2);
      }


/* Pricing table */
.table-wrap{
  overflow:auto;
  margin-top:12px
}
.price-table{
  width:100%;
  border-collapse:collapse;
  background:transparent
}
.price-table th, .price-table td{
  padding:16px 14px;
  border-bottom:1px solid rgba(255,255,255,0.03);
  text-align:left;
  color: var(--white);
  font-size: 0.95rem;
}
.price-table thead th{
  background: linear-gradient(135deg, #1a4d8f, #0f3d7a);
  color:var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.price-table tbody tr:nth-child(even){
  background:rgba(255,255,255,0.01)
}
.price-table td:last-child{
  font-weight:800;
  color:var(--white) /* cijene bijele */
}

/* Bold all price columns (M, L, XL) and single price column in pricing tables */
.pricing .price-table td:nth-child(3),
.pricing .price-table td:nth-child(4),
.pricing .price-table td:nth-child(5){
  font-weight:800;
  color: var(--white);
}

/* Descriptions should always be normal weight */
.pricing .price-table td:nth-child(2){
  font-weight: 400;
}
.pricing .row-detail .desc{
  font-weight: 400;
}

/* Contact form */
.contact{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:28px;
  align-items:start
}
.contact-form{
  background:#0f0f0f;
  padding:18px;
  border-radius:10px
}
.contact-form label{
  display:block;
  margin-top:10px;
  font-weight:700;
  color: var(--white);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.contact-form input, .contact-form textarea{
  width:100%;
  padding:12px 10px;
  border-radius:8px;
  border:1px solid rgba(26, 77, 143, 0.2);
  background: rgba(26, 26, 26, 0.5);
  color:var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #1a4d8f;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: 0 0 0 2px rgba(26, 77, 143, 0.1);
}
.contact-info{
  color:var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
@media (max-width:880px){
  .contact{
    grid-template-columns:1fr;
  }
  .top{ margin-left: 0; margin-right: 0; }
}

/* Footer */
.site-footer{
  padding:24px 0;
  background:#000;
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,0.02)
}
.footer-inner{display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.footer-logo{
  height:42px
}
.footer-nav a{
  color:var(--muted);
  text-decoration:none;
  margin-right:12px;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-nav a:hover {
  color: #1a4d8f;
  background: rgba(26, 77, 143, 0.05);
}
.social{
  color:var(--muted);
  text-decoration:none;
  margin-left:8px;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.social:hover {
  color: #1a4d8f;
  background: rgba(26, 77, 143, 0.05);
}

/* Utility */
a{
  color:inherit
}
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none
}
.btn-primary{
  background: linear-gradient(135deg, #1a4d8f, #0f3d7a);
  color:var(--white);
  font-weight:700;
  border:none;
  box-shadow: 0 2px 8px rgba(26, 77, 143, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1a4d8f, #2d5f9f, #1a4d8f);
  transition: left 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 77, 143, 0.25);
}

.btn-primary:hover::before {
  left: 0;
}

/* Show more button */
.show-more{
  display:block;
  width:100%;
  margin:12px 0 0;
  padding:10px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:#0f0f0f;
  color:#fff;
  cursor:pointer;
}
.show-more:hover{ background:#151515; }

/* Detailing videos: vertical track on mobile */
@media (max-width: 600px){
  .card-videos{ flex-direction:column; gap:10px; overflow-x:visible; }
  .card-videos video{ width:100%; height:auto; }
  .show-more{ margin-top:10px; } /* 10px ispod prikazane recenzije */
}

/* Detailing: keep the 4th card (Video prikaz rada) as a horizontal scroll strip on mobile */
@media (max-width: 600px){
  .services .service-grid .card:nth-of-type(4) .card-videos{
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .services .service-grid .card:nth-of-type(4) .card-videos video{
    width: auto;
    height: 220px;
    flex: 0 0 auto;
  }
}

/* Pricing: collapse descriptions on mobile UI hint */
@media (max-width: 700px){
  .price-table td:nth-child(2){ color:var(--white); }
}

/* === FOOTER STYLING === */
.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid #1a4d8f;
  box-shadow: 0 -2px 15px rgba(26, 77, 143, 0.15);
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
}

.footer-left h3 {
  color: #1a4d8f;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-left a:hover {
  color: #000dff;
  transition: 0.3s;
}

/* === GOOGLE REVIEW WIDGET === */
.google-widget {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  box-shadow: 0 2px 15px rgba(26, 77, 143, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 77, 143, 0.2);
}

.google-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(26, 77, 143, 0.2);
  border-color: rgba(26, 77, 143, 0.3);
}

.google-widget img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}

.google-text .review-text {
  font-weight: 600;
  font-size: 15px;
  display: block;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.score {
  font-weight: bold;
}

.stars {
  color: #FFD700; /* žute zvjezdice */
  font-size: 18px;
  letter-spacing: 2px;
}

/* === BOTTOM BAR === */
.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  color: #bbb;
}

/* === RESPONSIVE === */
/* Smart Repair Image */
.smart-repair-img {
  max-width: 300px;
  height: auto;
  margin: 15px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .google-widget {
    justify-content: center;
    margin-top: 20px;
  }
}

