:root{
    --bg1:#0b0b0b;
    --bg2:#262626;
    --accent:#e33b2f;
    --muted:#bdbdbd;
    --card:#141414;
    --glass: rgba(255,255,255,0.04);
}

/* ===================== GLOBAL ===================== */
* { box-sizing:border-box; }
body{
    margin:0;
    font-family:"Montserrat",system-ui,Arial;
    background: linear-gradient(180deg,var(--bg1),var(--bg2));
    color:#eee;
    -webkit-font-smoothing:antialiased;
}

/* ===================== NAVIGATION ===================== */
.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 28px;
    backdrop-filter: blur(6px);
    position:sticky;
    top:0;
    z-index:50;
    background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
}
.brand .logo{
    width:60px; height:60px;
    border-radius:10px;
    background:linear-gradient(130deg,#111,#222);
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:22px; color:var(--accent);
    box-shadow:0 6px 18px rgba(0,0,0,0.6);
    border:1px solid rgba(255,255,255,0.03);
}
.brand .title{line-height:1}
.brand .title .name{font-weight:700;font-size:18px;letter-spacing:1px;}
.brand .title .sub{font-size:12px;color:var(--muted);margin-top:2px}
.nav-links{display:flex;gap:18px;align-items:center}
.nav-links a{color:var(--muted);text-decoration:none;font-weight:500}
.btn-book{
    background:var(--accent);color:#fff;padding:10px 16px;border-radius:8px;
    text-decoration:none;font-weight:700;letter-spacing:0.6px;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: opacity 1s ease;
}

.hero-img-slow {
  opacity: 0; /* initially hidden */
}

/* Hero content above background */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  background: rgba(0,0,0,0.4);
}

/* FADE-IN SECTIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#termsModal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.modal-content {
  background: #1a1a1a;
  color: #eee;
  padding: 30px 24px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  border: 2px solid #e33b2f;
  animation: slideUp 0.5s ease;
}

.modal-content h2 {
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 16px;
  background: linear-gradient(45deg, #e33b2f, #3be33b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content h3 {
  margin-bottom: 12px;
  color: #e33b2f;
  font-size: 20px;
}

.modal-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.modal-content button {
  margin-top: 20px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #e33b2f, #3be33b);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modal-content button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.fade-out { animation: fadeOut 0.4s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* ===================== FADE-IN ANIMATION ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

/* Delays for staggered effect */
.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.marketing-info {
  background: #fff;
  padding: 60px 20px;
}

.marketing-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.marketing-text {
  flex: 1 1 400px;
  color: #333;
}

.marketing-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #e33b2f; /* red title */
}

.marketing-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.marketing-text .highlight {
  color: #cc582e; /* green highlights for freshness/shine */
  font-weight: 600;
}

.marketing-text .call {
  font-size: 18px;
  margin-top: 12px;
}

/* Right side background image */
.marketing-image {
  flex: 1 1 400px;
  min-height: 300px;
  background: url('https://i.postimg.cc/NMHrGfpz/image.png') center/cover no-repeat;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .marketing-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .marketing-image {
    min-height: 200px;
    width: 100%;
  }
}

/* ===================== CAROUSEL ===================== */
.gallery{
    max-width:1200px;margin:40px auto;padding:16px;border-radius:12px;
    border:1px solid rgba(255,255,255,0.03);
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.05));
}
.carousel{position:relative;overflow:hidden;border-radius:10px;}
.slides{display:flex;transition:transform 450ms ease;}
.slide{min-width:100%;display:flex;align-items:center;justify-content:center;padding:20px;}
.slide img{
    transition: transform 0.5s ease, box-shadow 0.3s;
    border-radius:8px; border:1px solid rgba(255,255,255,0.04);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-card.ticket {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 2px dashed #e33b2f; /* looks like ticket edges */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.package-card.ticket h3 {
    font-size: 22px;
    color: #e33b2f; /* red title */
    margin-bottom: 12px;
}

.package-card.ticket p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.package-card.ticket:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 28px rgba(0,0,0,0.3);
    border-color: #2ecc71; /* turns green on hover */
}

.package-card.ticket.special {
    border-color: #2ecc71; /* green ticket for special */
}

.package-card.ticket::before,
.package-card.ticket::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.package-card.ticket::before {
    left: -10px;
}

.package-card.ticket::after {
    right: -10px;
}



/* ===================== PACKAGE / GALLERY CAROUSEL FIX ===================== */
.gallery {
    max-width: 1200px;
    margin: 60px auto; /* more spacing from package section */
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.05));
    position: relative;
}

.carousel {
    max-width: 900px; /* slightly wider for better fit under packages */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(30,30,30,0.6));
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    position: relative;
    padding: 12px;
}

.carousel-title {
    text-align: center;
    font-size: 28px;
    color: #e33b2f;
    margin-bottom: 20px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide img {
    width: 100%;
    max-height: 450px; /* consistent height */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

/* Optional animated line under carousel for style */
.carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e33b2f, #2ecc71, #e33b2f);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: moveLine 6s linear infinite;
}

@keyframes moveLine {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .carousel {
        max-width: 100%;
        padding: 8px;
    }

    .slide img {
        max-height: 300px;
    }

    .carousel-title {
        font-size: 24px;
    }
}

/* Seksioni i shërbimeve me background */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 12px;

  background: url('https://i.postimg.cc/kgVfm1wd/Untitled-design-1.png') no-repeat left center;
  background-size: contain;
  background-color: #ffffff00;
}
.services .box {
  opacity: 0;          /* start invisible */
  transform: translateY(20px); /* slightly move down */
  transition: opacity 1s ease, transform 1s ease;
}

.services.show .box {
  opacity: 1;
  transform: translateY(0);
}

/* Titles */
h1 { 
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  text-align: center;
  font-size: 36px;
}

/* Boxes – Modern Card Style */
.box {
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  transform: scale(1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px); /* subtle frosted effect */
}

/* Hover Effect */
.box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Optional: subtle background shift on hover */
.silver:hover { background: #e0e0e0; }
.gold:hover { background: #fff3c0; }
.platinum:hover { background: #d9d8d5; }
.special:hover { background: #ffd6d6; }

/* Box Titles */
.box h2 {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2);
}

/* List Items */
.box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #222;
}

.box ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  padding-left: 18px;
}

.box ul li::before {
  content: '✔';
  color: #4caf50;
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Price Box */
.price {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Colors for Each Box */
.silver { background: #f9f9f9; }
.silver h2 { background: silver; }
.silver .price { background: #444; color: white; }

.gold { background: #fff8e1; }
.gold h2 { background: goldenrod; }
.gold .price { background: #333; color: white; }

.platinum { background: #e5e4e2; }
.platinum h2 { background: #555; }
.platinum .price { background: #000; color: #fff; }

.special { background: #ffe5e5; }
.special h2 { background: crimson; }
.special .price { background: #222; color: #fff; }

/* Responsive – 1 Column on Mobile */
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
  }
}


.cards-section-small {
  position: relative;
  padding: 120px 40px; /* more spacing for bigger cards */
  background: linear-gradient(135deg, #cf3232 50%, #d54949 50%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  overflow: hidden;
}

.cards-container-small {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px; /* bigger gap for bigger cards */
  max-width: 1300px; /* more width for big cards */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.card-text-small, 
.card-photo-small {
  flex: 1 1 48%; /* almost half width for bigger cards */
  min-width: 300px; /* prevent too small */
  box-sizing: border-box;
}

.card-text-small {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.card-text-small h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.card-text-small p {
  font-size: 18px;
  line-height: 1.7;
}

.card-photo-small {
  flex: 1 1 48%; /* almost half width on desktop */
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: stretch; /* stretch photo to fill container */
  justify-content: center;
}

.card-photo-small img {
  width: 100%;
  height: 100%; /* fill the card height */
  object-fit: cover; /* keeps aspect ratio and fills space */
  display: block;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-photo-small:hover img {
  transform: scale(1.1); /* slight zoom on hover */
  box-shadow: 0 14px 28px rgba(0,0,0,0.5);
}

.red-line-small {
  height: 4px;
  width: 100px;
  background: #fff;
  margin: 30px auto 0 auto;
  border-radius: 2px;
}

/* Tablet */
@media (max-width: 1024px) {
  .cards-container-small {
    gap: 30px;
  }

  .card-text-small, 
  .card-photo-small {
    flex: 1 1 100%;
  }

  .card-photo-small img {
    height: 250px;
  }

  .card-text-small h3 {
    font-size: 28px;
  }

  .card-text-small p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cards-section-small {
    padding: 100px 20px;
  }

  .card-photo-small img {
    height: 200px;
  }

  .card-text-small h3 {
    font-size: 22px;
  }

  .card-text-small p {
    font-size: 15px;
  }

  .cards-container-small {
    gap: 20px;
  }
}


.red-line-small {
  height: 3px;
  width: 60px;
  background: #fff;
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 980px) {
  .cards-container-small {
    flex-direction: column-reverse;
    text-align: center;
  }

  .card-photo-small img {
    height: 150px;
  }
}

.reviews {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;

  background-color: #181818; /* dark background for the section */
  border-radius: 16px;        /* optional: rounded edges for section */
}


.reviews h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--accent);
}

/* Tree Layout */
.review-cards.tree-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px;
  justify-items: center;

  /* Background image */
  position: relative;
  background: url('https://i.postimg.cc/kgVfm1wd/Untitled-design-1.png') top right no-repeat;
  background-size: 625px auto; /* adjust size */
  padding: 50px 30px; /* spacing to avoid overlap with cards */
}


.review-cards.tree-layout .review-card:nth-child(1) {
  grid-column: 1 / span 2; /* top node spans both columns */
}

.review-cards.tree-layout .review-card:nth-child(2) {
  grid-column: 1 / 2; /* left node */
}

.review-cards.tree-layout .review-card:nth-child(3) {
  grid-column: 2 / 3; /* right node */
}

.review-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  background: linear-gradient(145deg, #222, #111);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.review-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.review-card span {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.apology-note {
  margin-top: 40px;
  padding: 20px;
  background: #fff8f0;
  border-left: 5px solid #e33b2f;
  border-radius: 12px;
  font-size: 14px;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

.apology-note strong {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-style: normal;
  color: #222;
}

/* Responsive */
@media (max-width: 800px) {
  .review-cards.tree-layout {
    grid-template-columns: 1fr;
  }

  .review-cards.tree-layout .review-card:nth-child(1),
  .review-cards.tree-layout .review-card:nth-child(2),
  .review-cards.tree-layout .review-card:nth-child(3) {
    grid-column: 1 / 2;
  }
}
.feature-gallery {
    width: 100%;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.feature-gallery-title {
    text-align: center;
    font-size: 32px;
    color: #e33b2f;
    margin-bottom: 40px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.feature-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
}

.feature-box {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-box img {
    width: 100%;
    height: auto;       /* maintain original aspect ratio */
    display: block;
    border-radius: 16px 16px 0 0;
    object-fit: contain; /* important: scale image to fit inside */
}

.feature-box p {
    color: #fff;
    font-size: 18px;
    margin: 12px 0;
    padding: 0 10px;
    flex-grow: 1;
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-box {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .feature-gallery-title {
        font-size: 24px;
    }

    .feature-box {
        max-width: 100%;
    }

    .feature-box img {
        max-height: none;  /* remove height limit */
        object-fit: contain; /* scale to fit */
    }

    .feature-box p {
        font-size: 16px;
    }
}

.highlight-section {
  display: flex;
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: #000; /* fallback black */
  color: #fff;
  margin: 60px 0;
}
.highlight-bg {
  flex: 1;
  background: url('https://i.pinimg.com/736x/f2/d1/b6/f2d1b6dc42a1109b8aa7f50c2cc8e352.jpg') center/cover no-repeat;
}


.highlight-content {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlight-list li .icon {
  color: red;
  font-size: 32px;
  margin-right: 16px;
}

.highlight-list li h4 {
  margin: 0 0 4px 0;
  font-size: 20px;
}

.highlight-list li p {
  margin: 0;
  font-size: 16px;
  color: #ccc;
}



/* ===================== MAP + CONTACT ===================== */
.map-contact {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    padding: 60px;
    border-radius: 16px;
    position: relative;
    background: #646262; /* full-section red background */
    overflow: hidden;
}

/* Decorative white circles for entire section */
.map-contact::before,
.map-contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.map-contact::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.map-contact::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.map,
.contact {
    position: relative;
    z-index: 1; /* above circles */
}

/* Map styling */
.map {
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

/* Working hours & contact form */
.working-hours {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.working-hours h4 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
    color: #fff;
    font-size: 14px;
}

.contact {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Contact form elements */
.contact h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(243, 235, 235, 0.6);
}

.contact label {
    font-size: 13px;
    color: #fff;
    display: block;
    margin: 10px 0 6px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgb(255, 255, 255);
    background: rgba(255,255,255,0.05);
    color: #fff;
    resize: vertical;
    transition: background 0.3s, border 0.3s;
}

.contact input:focus,
.contact textarea:focus {
    background: rgba(255, 255, 255, 0.628);
    border: 1px solid #fff;
    outline: none;
}

.contact button {
    margin-top: 12px;
    background: #fff;
    border: 0;
    padding: 10px 12px;
    border-radius: 8px;
    color: #e33b2f;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact button:hover {
    background: #ffe5e0;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .map-contact {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .map, .contact {
        width: 100%;
    }
}

.terms-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex; justify-content: center; align-items: center;
  z-index: 1000;
}
.terms-content {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
}
#acceptTerms {
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}



/* ===================== FOOTER ===================== */
footer.footer {
    position: relative;
    background: url('https://i.pinimg.com/1200x/fb/f9/dd/fbf9ddceb5484a80f455865a9b536a07.jpg') center/cover no-repeat;
    color: #fff;
    border-radius: 12px;
    margin: 36px auto;
    max-width: 1200px;
    overflow: hidden;
}

.footer-overlay {
    background: rgba(227,59,47,0.85); /* semi-transparent red overlay */
    padding: 40px 20px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* make icons white */
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffe5e0;
}

.footer-social {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

.footer-social a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.footer-social a:hover {
    color: #ffe5e0;
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .footer-content {
        gap: 16px;
    }
    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    .contact-item {
        justify-content: center;
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:980px){
    .hero { grid-template-columns:1fr; gap:16px; padding:20px; }
    .hero-right { width:100%; height:300px; }
    .services { grid-template-columns:1fr; }
    .map-contact { grid-template-columns:1fr; }
    .carousel .controls { top:45%; }
}

/* ===================== SERVICE PHOTO FULL ===================== */
@media (min-width:981px){
    .services { display:block; }
    .service-photo {
        width:80%; height:500px; margin:40px auto; padding:0; border-radius:16px;
        overflow:hidden; box-shadow:0 20px 40px rgba(0,0,0,0.6);
    }
    .service-photo img { width:100%; height:100%; object-fit:cover; border-radius:16px; }
    .service-photo .caption { text-align:center; margin-top:12px; font-size:14px; }

    .service-list {
        display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
        gap:18px; max-width:1200px; margin:40px auto 60px auto; padding:0;
    }
    .service-card { padding:16px; border-radius:12px; }
}

/* ===================== LARGE SCREEN HERO + SERVICE ===================== */
@media (min-width:1200px){
    /* Hero car full view */
    .hero-right .car-wrap { overflow:visible; border-radius:0; height:auto; }
    .hero-right .car-img { background-size:contain; width:100%; height:auto; }

    /* Service photo full */
    .service-photo { overflow:visible; border-radius:0; height:auto; }
    .service-photo img { object-fit:contain; width:100%; height:auto; border-radius:0; }

    .hero { grid-template-columns:2fr 1.2fr; }
}
