.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   GLOBAL
========================= */

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* =========================
   CONTAINER
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
  background: #2a155b;
  color: #fff;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .top-bar-inner {
    height: auto;
    padding: 8px 20px;
    gap: 5px;
  }

  .top-left,
  .top-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-left-address {
    display: none;
  }

  .top-right-hours,
  .top-right-separator {
    display: none;
  }

  .top-bar {
    font-size: 12px;
    text-align: center;
  }
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 40px;
  font-size: 14px;
  font-weight: 600;
}

.status-dot .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: gray;
}

.status-dot.open .dot {
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.status-dot.closed .dot {
  background: #ef4444;
}

@media (max-width: 768px) {

  .status-dot {
    margin-left: 0;         
    justify-content: center; 
    width: 100%;
    font-size: 12px;   
    font-weight: 500;          
  }

}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 34px;
  z-index: 999;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #2a155b;
}

/* =========================
   MENU 
========================= */

.menu {
  display: flex;
  gap: 30px;
}

.menu li a {
  position: relative;
  font-size: 15px;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2a155b;
  transition: 0.3s;
}

.menu li a:hover {
  color: #2a155b;
}

.menu li a:hover::after {
  width: 100%;
}

.header-btn {
  background: linear-gradient(135deg, #2a155b, #4f46e5);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
}

/* =========================
   BURGER
========================= */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2100; 
}

.burger span {
  width: 26px;
  height: 3px;
  background: #2a155b;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   MOBILE 
========================= */

@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .header-btn {
    display: none;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;

    width: 280px;
    height: 100vh;

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 100px 20px 40px 20px;
    margin: 0 !important;

    transform: translateX(-100%);
    transition: 0.4s ease;

    z-index: 2000; 
    box-shadow: 5px 0 25px rgba(0,0,0,0.1);
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    display: block;
    width: 100%;

    font-size: 18px;
    color: #2a155b !important;

    padding: 14px 10px;

    position: relative;
    z-index: 2100;
  }

  .menu li a::after {
    display: none;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none; 
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

body.no-scroll {
  overflow: hidden;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2026/03/WhatsApp-Image-2026-03-28-at-1.38.59-AM.jpeg') center/cover no-repeat;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      90deg,
      rgba(42, 21, 91, 0.95) 0%,
      rgba(42, 21, 91, 0.85) 40%,
      rgba(42, 21, 91, 0.6) 70%,
      rgba(42, 21, 91, 0.3) 100%
    );
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 650px;
  
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
  }

  .hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px; 
  }
  
  .hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
  }

  .hero p {
    font-size: 17px;
    color: #d1d1d1;
    margin-bottom: 30px;
    max-width: 600px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  
  .btn-primary {
    background: #fff;
    color: #2a155b;
    padding: 13px 24px;
    border-radius: 14px;
    transition: 0.3s;
  }
  
  .btn-primary:hover {
    background: #eee;
  }

  .btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 13px 24px;
    border-radius: 14px;
    transition: 0.3s;
  }
  
  .btn-outline:hover {
    background: #fff;
    color: #2a155b;
  }

  .hero-content {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
  }
  
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .menu {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: #2a155b;
    padding: 80px 30px;
    transition: 0.4s;
    z-index: -1;
  }

  .nav.active {
    left: 0;
  }

  .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .menu li a {
    color: #fff;
    font-size: 18px;
  }

  .hero {
    height: auto;
    padding: 100px 0;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   WHY SECTION
========================= */

.why {
  background: #f5f6f8;
  padding: 100px 0;
}

.why-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 60px;
}

.why-header h2 {
  font-size: 36px;
  line-height: 120%;
  color: #2a155b;
  margin-bottom: 15px;
}

.why-header p {
  color: #676f7e;
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: #eef0f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
}

.why-card h3 {
  font-size: 18px;
  color: #2a155b;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #666;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SERVICES
========================= */

.services {
  background: #f5f6f8;
  padding: 70px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 36px;
  line-height: 120%;
  color: #2a155b;
  margin-bottom: 10px;
}

.services-header p {
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #2a155b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.service-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #fff;
  color: #2a155b;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 18px;
  color: #2a155b;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  color: #666;
}

.services-btn {
  text-align: center;
  margin-top: 40px;
}

.btn-main {
  background: #2a155b;
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  display: inline-block;
}

@media (max-width: 768px) {
  .services {
    padding: 0 0 70px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BEFORE AFTER
========================= */

.before-after {
  background: #2a155b;
  padding: 70px 0;
  text-align: center;
}

.ba-header h2 {
  font-size: 36px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 10px;
}

.ba-header p {
  color: #fff;
  margin-bottom: 50px;
}

.ba-wrapper {
  display: flex;
  justify-content: center;
}

.ba-image {
  position: relative;
  width: 350px;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
}

.img-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-before-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.img-before-wrapper img {
  width: 350px;
  height: 450px;
  object-fit: cover;
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #2a155b;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #2a155b;
  border: 3px solid #fff;
  border-radius: 50%;
}

.ba-slider {
  cursor: ew-resize;
  touch-action: none;
}

/* =========================
   STEPS 
========================= */

.steps {
  background: #f5f6f8;
  padding: 100px 0;
  text-align: center;
}

.steps-header h2 {
  font-size: 36px;
  line-height: 120%;
  color: #2a155b;
  margin-bottom: 10px;
}

.steps-header p {
  color: #777;
  margin-bottom: 70px;
  font-size: 15px;
}

.steps-wrapper {
  position: relative;
}


.steps-line {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e2e2;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step {
  text-align: center;
}

.step-icon {
  width: 90px;
  height: 90px;
  background: #2a155b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step h3 {
  font-size: 18px;
  color: #2a155b;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #666;
  max-width: 220px;
  margin: 0 auto;
}

.steps-btn {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .steps {
    padding: 70px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 20px;
  }

  .steps-line {
    display: none;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 20px;
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 120px 0;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rating {
  text-align: center;
  padding: 30px 50px;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

.rating:hover {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.google-logo {
  font-size: 26px;
  font-weight: bold;
  color: #ea4335;
  margin-bottom: 5px;
}

.rating span {
  font-size: 12px;
  color: #777;
  display: block;
}

.rating h2 {
  font-size: 56px;
  font-weight: 700;
  color: #2a155b;
}

.stars {
  color: gold;
  margin: 0 0 5px;
  animation: fadeIn 0.8s ease;
}

.rating p {
  font-size: 13px;
  color: #777;
}

.review-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  padding: 50px 40px;
  border-radius: 16px;

  text-align: center;
  max-width: 500px;
  position: relative;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;

  margin: -90px auto 15px;

  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-stars {
  color: gold;
  margin-bottom: 10px;
}

.review-card h3 {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.review-name {
  font-size: 12px;
  font-weight: bold;
  color: #000;
}

/* =========================
   ANIMACIJE
========================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .testimonial {
    padding-bottom: 20px;
  }

  .testimonial-wrapper {
    flex-direction: column;
  }

  .rating {
    order: 2;
    width: 100%;
  }

  .rating-left {
    display: none;
  }

  .review-card {
    order: 1;
    width: 100%;
  }

}

/* =========================
   FAQ
========================= */

.faq {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 36px;
  line-height: 120%;
  color: #2a155b;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  color: #2a155b;
  border-radius: 12px;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding: 0 15px;

  opacity: 0;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
  font-size: 14px;

  transform: translateY(10px);
  transition: 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .faq-answer p {
  transform: translateY(0);
}

.faq-item.active .faq-question {
  background: #2a155b;
  color: #fff;
  border-color: #2a155b;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg) scale(1.2);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .faq {
    padding: 70px 0;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px;
  }

}

/* =========================
   LOCATION / MAP
========================= */

.location {
  background: #f5f6f8;
  padding: 100px 0;
}

.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-header h2 {
  font-size: 36px;
  line-height: 120%;
  color: #2a155b;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: none;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: #e9ebf2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item h4 {
  font-size: 16px;
  color: #2a155b;
  margin-bottom: 3px;
}

.info-item p {
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .location {
    padding: 70px 0;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 300px;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #2a155b;
  color: #fff;
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-top .columns-2 {
  display: flex;
  gap: 40px;
  width: 100%;
}

.footer-top .columns-2 .footer-col {
  flex-shrink: 0;
  text-align: left;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #cfcfe6;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #cfcfe6;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #fff;
  color: #2a155b;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-col-links {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column-reverse;
    gap: 15px;
  }
}


/* PAGE GALLERY */

.gallery {
  background: #f5f6fa;
  padding: 80px 0;
}

.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-header h1 {
  font-size: 42px;
  color: #1e1e2f;
}

.gallery-header p {
  color: #666;
  margin-top: 10px;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filters button {
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background: #e5e7eb;
  cursor: pointer;
  transition: 0.3s;
}

.filters button.active,
.filters button:hover {
  background: #2a155b;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.1);
}

.card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.pricing.premium {
  background: linear-gradient(180deg, #f5f6fa 0%, #ffffff 100%);
  padding: 100px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h1 {
  font-size: 48px;
  color: #111;
}

.pricing-header p {
  color: #666;
  margin-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.highlight {
  background: #2a155b;
  color: #fff;
  transform: scale(1.05);
}

.pricing-card.highlight:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.pricing-card h2 {
  margin-bottom: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.pricing-btn {
  display: block;
  margin-top: 25px;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  background: #412388;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #2a155b;
}

.pricing-btn.white {
  background: #fff;
  color: #2a155b
  ;
}

.pricing-btn.white:hover {
  background: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header h1 {
    font-size: 32px;
  }
}