:root {
  --primary: #FF8C00;
  --bg-dark: #1a1a1a;
  --card-bg: rgba(25, 25, 25, 0.95);
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --border:  rgb(255 118 0 / 57%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth !important;
}
body { 
  font-family: 'Poppins', sans-serif; 
  background-color: var(--bg-dark); 
  color: var(--text-main);
  overflow-x: hidden;
}

.hero {
  position: relative; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden; 
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -2; 
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0), rgb(226 140 22 / 31%));
  z-index: -1; 
}

.hero-content {
  position: relative;
  z-index: 1; 
  text-align: center;
}

.hero-content { text-align: center; margin-bottom: 40px; margin-top: 80px; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 2px; text-transform: uppercase; }
.hero-content span { color: var(--primary); text-shadow: 0 0 15px  var(--border); }
.hero-content p { color: var(--text-dim); font-weight: 300; margin-top: 10px; }

.booking-wrapper {
  width: 100%;
  max-width: 1100px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}


.step-nav {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: 0.4s;
}
.step-item.active { opacity: 1; }
.step-circle {
  width: 35px; height: 35px; border-radius: 10px;
  background: #222; border: 1px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.step-item.active .step-circle { background: var(--primary); box-shadow: 0 0 15px var(--primary); }
.step-label { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-line { width: 50px; height: 1px; background: var(--border); margin: 0 15px; }


.main-grid { display: grid; grid-template-columns: 1fr 1.5fr; min-height: 550px; }

.form-container { padding: 40px; }
.form-step { display: none; flex-direction: column; gap: 20px; }
.form-step.active { display: flex; animation: fadeIn 0.5s ease; }

.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; }

input, select {
  background: #1a1a1a; border: 1px solid #333;
  padding: 14px; border-radius: 8px; color: #fff;
  font-family: inherit; transition: 0.3s;
}
input:focus { border-color: var(--primary); outline: none; background: #222; }

.btn-action {
  background: var(--primary); color: white; border: none;
  padding: 16px; border-radius: 8px; font-weight: 700;
  cursor: pointer; text-transform: uppercase; margin-top: 10px;
  transition: 0.3s;
 text-decoration:none;
}
.btn-action:hover { transform: translateY(-2px); box-shadow: 0 10px 20px  var(--border); }


.map-container { display: flex; flex-direction: column; position: relative; }
#map { flex-grow: 1; width: 100%; min-height: 400px; filter: brightness(0.85) contrast(1.05); }

.stats-overlay {
  display: flex; justify-content: space-around;
  padding: 25px; background: rgba(17, 17, 17, 0.9);
  border-top: 1px solid var(--border);
}
.stat-card { text-align: center; }
.stat-card span { display: block; font-size: 10px; color: var(--text-dim); text-transform: uppercase; }
.stat-card strong { font-size: 18px; color: var(--primary); }

.counter-row { display: flex; justify-content: space-between; align-items: center; background: #1a1a1a; padding: 10px 15px; border-radius: 8px; }
.counter-btns { display: flex; align-items: center; gap: 15px; }
.c-btn { width: 28px; height: 28px; border-radius: 5px; border: 1px solid var(--primary); background: transparent; color: white; cursor: pointer; }

@keyframes fadeIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 850px) {
  .main-grid { grid-template-columns: 1fr; }
  .nav-line { display: none; }
  .step-label { display: none; }
}

input[type="date"],
input[type="time"] {
  position: relative;
  color-scheme: dark;
  accent-color: var(--primary); 
  cursor: pointer;
}


input[type="date"],
input[type="time"] {
  background-color: #303030; 
  color: #ffffff;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  color-scheme: dark;
  accent-color: var(--primary); 
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(18%) sepia(88%) saturate(5451%) hue-rotate(348deg) brightness(81%) contrast(106%);
  cursor: pointer;
}

input[type="date"]:focus,
input[type="time"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 5px  var(--border);
}

.swal2-popup {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

.swal2-title, .swal2-html-container {
  color: #ffffff !important;
}
.swal2-confirm {
  background-color: var(--primary) !important;
  border: none !important;
}


body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.a2m-features {
  background-color: #181818; 
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.highlight {
  color: var(--primary); 
}

.trust-badge {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #f0f0f0;
}

.gold-text {
  color: var(--primary);
}

.card-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.feature-card {
  background-color: #ffffff;
  color: #333;
  padding: 40px 30px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 7px 8px 0px 0px rgb(226 140 22);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  line-height: 1.8;
  font-size: 0.95rem;
}


.btn-yellow {
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: auto;
  transition: opacity 0.2s;
}

.btn-yellow:hover {
  opacity: 0.9;
}

.footer-action {
  margin-top: 40px;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #0b1121;
}


@media (max-width: 768px) {
  .main-title { font-size: 1.5rem; }
  .card-grid { flex-direction: column; align-items: center; }
}

.social-floating {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.social-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.social-icon img {
    width: 50px;
    height: 50px;
}

.social-icon:hover {
    transform: scale(1.1) translateX(-5px);
    filter: brightness(1.2);
}


@media (max-width: 768px) {
    .social-floating {
        right: 10px;
    }
    .social-icon {
        width: 50px;
        height: 50px;
    }
    .social-icon img {
        width: 35px;
        height: 35px;
    }
}


/*faq*/
.faq{
    background: #0a0a0a;
}
.faq-container {
    color: white;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    color: var(--primary); 
    margin-bottom: 40px;
}

.faq-item {
    background: #1A1A1A; 
    border: 1px solid var(--primary);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.faq-question:hover {
    background: #252525;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #111;
}

.faq-answer p {
    padding: 20px 0;
    color: #D1D5DB;
}

.faq-contact-card {
    margin-top: 50px;
    background: var(--primary);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    background: white;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn.highlight {
    background: #0A0A0A;
    color: white;
}

.btn-prev {
  background: #303030; 
  color: #ffffff;
  border: 1px solid #444;
  padding: 16px; border-radius: 8px; font-weight: 700;
  cursor: pointer; text-transform: uppercase; margin-top: 10px;
  transition: 0.3s;
}
.gallery-slider {
    background-color: #1d1b19;
    padding: 100px 0;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.slide-group {
    display: none;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide-group.active {
    display: flex;
    opacity: 1;
}

.prestation-card {
    flex: 1;
    background: #151515;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prestation-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.7);
    transition: 0.5s;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, #FF8C00, #B85C00);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
}

.card-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #FF8C00;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-style: italic;
}

.read-more {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #D1D5DB;
    font-weight: bold;
    letter-spacing: 1px;
}

.prestation-card:hover {
    transform: translateY(-15px);
    border-color: #FF8C00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.prestation-card:hover img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.05);
}


.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #FF8C00;
    border: 1px solid #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: #FF8C00;
    color: white;
    border-color: #FF8C00;
}

.prev-slide { left: -20px; }
.next-slide { right: -20px; }

.dots-container {
    text-align: center;
    margin-top: 40px;
}

.dot {
    height: 8px;
    width: 8px;
    background: #333;
    display: inline-block;
    margin: 0 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #FF8C00;
    width: 25px;
    border-radius: 10px;
}





@media (max-width: 1024px) {
    .slide-group.active { flex-direction: column; align-items: center; }
    .prestation-card { width: 100%; max-width: 400px; }
    .nav-btn { display: none; }
}


.main-footer {
    background-color: #000000;
    color: #fff;
    padding: 80px 0 30px 0;
    position: relative;
    border-top: 1px solid #222;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #FF8C00 50%, transparent 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.brand-tagline {
    color: #FF8C00;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.brand-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #FF8C00;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: #FF8C00; padding-left: 5px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item a { color: #ccc; text-decoration: none; }

.social-box {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #222;
    background: ;
    transition: 0.3s;
}

.social-box:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #111;
    color: ##ebebeb;
    font-size: 12px;
    .image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-item { justify-content: center; }
}





.main-header {
    background-color: rgba(10, 10, 10, 0.95); /* Semi-transparent dark bg */
    border-bottom: 1px solid #333;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    backdrop-filter: blur(10px); /* Modern blur effect */
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Logo Styling */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #FF8C00; /* Safety Orange from logo */
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
}

.brand-sub {
    color: #D1D5DB; /
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}


.header-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.header-nav a:hover, .header-nav a.active {
    color: #FF8C00;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #FFC107 0%, #FF8C00 100%);
    color: #000 !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: 0.3s;
}

.btn-phone:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


@media (max-width: 1024px) {
    .header-nav { display: none; } 
}


.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FF8C00; /* Logo Orange */
    transition: 0.3s;
}


@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        order: 2;
    }

    .header-cta {
        display: none; /* Hide phone number on small screens to save space */
    }

    .header-nav {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A0A0A;
        border-bottom: 2px solid #FF8C00;
        padding: 20px 0;
    }

    .header-nav.active {
        display: block; /* Shown when clicked */
    }

    .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}