/* ============================================================
   PROMOPATH - Unified Responsive Stylesheet
   ============================================================ */

/* ===== Color Palette ===== */
:root {
  --brand-orange: #ff6600;
  --brand-black: #0b0b0b;
  --brand-white: #ffffff;
  --accent: #00c8ff;
  --muted: #9aa3ad;
}

/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--brand-black);
  color: var(--brand-white);
  line-height: 1.5;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(90deg, var(--brand-black), #111);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-link img {
  height: 56px;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.22s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--brand-white);
  font-size: 22px;
}

/* ===== Hero Slider ===== */
/* ===== Hero Slider Full Responsive ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh; /* base height for large screens */
  overflow: hidden;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers container without stretching */
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  max-width: 90%;
}

/* Hero text scaling */
.hero-content h1 {
  font-size: clamp(20px, 5vw, 48px); /* scales dynamically */
  margin-bottom: 10px;
}

.hero-content p {
  font-size: clamp(12px, 2.5vw, 18px);
}

/* ===== Mobile Overrides ===== */
@media (max-width: 900px) {
  .hero-slider {
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .hero-slider {
    height: 50vh;
  }
  .hero-content {
    padding: 15px;
  }
}


/* ===== Section Titles ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--brand-orange);
}

.lead {
  color: #bbbbbb;
  font-size: 17px;
  text-align: center;
  margin-bottom: 50px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--brand-orange);
  color: var(--brand-white);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #ff8533, #00c8ff);
}

.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  text-decoration: none;
}

/* ===== Services Section ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 80px;
  justify-items: center;
}

.service-card {
  background: #1a1a1a;
  border: 2px solid #222;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #ff6600, #00c8ff) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
}

.service-icon {
  font-size: 45px;
  color: var(--brand-orange);
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
  color: var(--accent);
}

.service-card p,
.service-card ul {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.service-card ul li::before {
  content: "✔";
  color: var(--brand-orange);
  margin-right: 8px;
}

/* ===== Packages Section ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 80px;
  justify-items: center;
}

.package-card {
  background: #1a1a1a;
  border: 2px solid #222;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #ff6600, #00c8ff) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
}

.package-card h3,
.package-card h4,
.package-card .price {
  color: var(--brand-orange);
  margin-bottom: 10px;
  font-weight: 600;
}

.package-card .badge {
  background: var(--brand-orange);
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.package-card ul li::before {
  content: "✔";
  color: var(--brand-orange);
  margin-right: 8px;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--brand-orange);
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 15px;
}

/* ===== Admin Verification ===== */
.admin-wrap {
  padding: 40px 20px;
  text-align: center;
}

.verify-box {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-box h2 {
  font-size: 24px;
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.verify-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 25px;
}

.verify-box input[type="text"],
.verify-box input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
  color: #fff;
  font-size: 15px;
}

.verify-box button {
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  background: var(--brand-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.verify-box button:hover {
  background: linear-gradient(90deg, #030202, #00c8ff);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 3px solid var(--brand-orange);
  padding: 28px 0;
  margin-top: 40px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.footer-brand img {
  height: 48px;
}

.footer-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-socials a {
  display: inline-block;
  margin-right: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 14px;
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: #ff8533;
}

.site-copyright {
  text-align: center;
  color: #aaaaaa;
  margin-top: 18px;
  font-size: 13px;
}
/* Make only email and Telegram in footer orange */
.footer-contact a {
  color: orange; /* change to your desired orange, e.g., #ff8500 */
  text-decoration: none;
  font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 34px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #060606;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  .main-nav.show {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero-content { padding: 20px; }
  .hero-slider { height: 60vh; }
  .services-list, .package-grid { gap: 18px; }
}
/* ===== General ===== */
body {
  font-family: 'Arial', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  background-color: #111;
  padding: 15px 0;
  border-bottom: 2px solid #ff8533;
}
.site-header .logo-link img {
  height: 48px;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}
.main-nav a.active, .main-nav a:hover {
  color: #ff8533;
}

/* ===== Admin Verification ===== */
.admin-wrap {
  text-align: center;
  padding: 50px 20px;
}

.verify-box {
  max-width: 480px;
  margin: 30px auto;
  padding: 30px 25px;
  background: #1a1a1a;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.verify-box input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.verify-box button {
  padding: 12px 25px;
  margin: 0 5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn {
  background: #ff8533;
  color: #fff;
}
.btn:hover {
  background: linear-gradient(90deg, #ff8533, #00c8ff);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ff8533;
  color: #ff8533;
}
.btn-outline:hover {
  background: #ff8533;
  color: #fff;
}

.popup {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: none;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

.popup.show {
  display: block;
}

.popup.success {
  background-color: #28a745; /* green */
  color: #fff;
}

.popup.error {
  background-color: #dc3545; /* red */
  color: #fff;
}


/* ===== Responsive ===== */
@media (max-width: 600px) {
  .verify-box {
    padding: 20px 15px;
  }
  .main-nav {
    display: none;
  }
}
