/* ============================================================
   PV Event Management – Custom Stylesheet
   Brand: Orange #F97316 | Navy #0F172A | Gold #FBBF24
   ============================================================ */

/* ── Google Font ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --primary:    #F97316;
  --primary-dark: #ea6c0e;
  --secondary:  #0F172A;
  --accent:     #FBBF24;
  --bg:         #FFF8F2;
  --white:      #FFFFFF;
  --light:      #F5F5F5;
  --text:       #334155;
  --border:     #E2E8F0;
  --grad-primary: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --grad-dark:    linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --shadow-sm:  0 2px 8px rgba(249,115,22,.12);
  --shadow-md:  0 8px 30px rgba(249,115,22,.18);
  --shadow-lg:  0 20px 60px rgba(249,115,22,.22);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --transition: all .35s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  position: relative;
  margin-bottom: .5rem;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
  display: block;
  margin-bottom: .5rem;
}

.section-description {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 99px;
  margin: 1rem auto 1.5rem;
}

.section-divider.left { margin-left: 0; }

/* ── Utility ──────────────────────────────────────────────── */
.text-primary-brand { color: var(--primary) !important; }
.text-accent        { color: var(--accent)  !important; }
.bg-primary-brand   { background: var(--primary) !important; }
.bg-grad            { background: var(--grad-primary) !important; }
.bg-dark-brand      { background: var(--secondary) !important; }

.py-section    { padding-top: 90px; padding-bottom: 90px; }
.py-section-sm { padding-top: 60px; padding-bottom: 60px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary-brand {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249,115,22,.45);
  color: #fff;
}

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-white-brand {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-white-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Navbar ───────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: var(--transition);
  padding: 1.2rem 0;
}

#mainNav.scrolled {
  background: rgba(0,0,0,.97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
  padding: .7rem 0;
}

#mainNav .navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-logo {
  display: block;
  width: 160px;
  height: 70px;
  object-fit: contain;
}

.brand-logo-mobile {
  width: 132px;
  height: 70px;
}

.brand-logo-footer {
  width: 180px;
  height: 70px;
}

@media (max-width: 576px) {
  .brand-logo {
    width: 132px;
    height: 70px;
  }
}

#mainNav .nav-link {
  font-weight: 500;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
  padding: .4rem .9rem !important;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: width .3s ease;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 70%; }

#mainNav.scrolled .nav-link { color: rgba(255,255,255,.95); }
#mainNav .nav-link:hover    { color: var(--primary); }

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.offcanvas {
  max-width: 100vw;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-swiper { height: 100vh; }

.hero-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.75) 0%, rgba(15,23,42,.45) 60%, rgba(249,115,22,.15) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(249,115,22,.2);
  border: 1px solid rgba(249,115,22,.4);
  backdrop-filter: blur(8px);
  color: #FBBF24;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-title span { color: var(--accent); }

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stat-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 110px;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: .2rem;
}

/* Swiper custom nav */
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  color: #fff;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,.5) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  transition: var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  width: 30px !important;
  border-radius: 5px !important;
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.text-start { text-align: left; }
.section-header.text-start .section-divider { margin-left: 0; }

/* ── Cards ────────────────────────────────────────────────── */
.card-hover {
  transition: var(--transition);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .card-img-wrap img { transform: scale(1.08); }

.service-card .service-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.service-card .card-body { padding: 1.5rem 1.5rem 1.5rem; padding-top: 2rem; }

.service-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: .5rem;
}

.service-card .card-text {
  font-size: .88rem;
  color: #64748b;
  line-height: 1.65;
}

.service-card .btn-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  transition: var(--transition);
}

.service-card .btn-read-more:hover { gap: .8rem; }

/* ── Home Services (sample layout style) ────────────────── */
.home-services .service-item {
  position: relative;
  margin-top: 45px;
}

.home-services .service-inner {
  position: relative;
  height: 100%;
  margin-top: 45px;
  background: #fff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.home-services .service-inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  transition: 1s;
  background: var(--grad-primary);
}

.home-services .service-inner:hover::before,
.home-services .service-inner:focus-within::before,
.home-services .service-inner:active::before {
  height: 100%;
  top: 0;
}

.home-services .service-inner .btn-light {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  margin-left: 3rem;
}

.home-services .service-inner .btn-light:hover {
  background-color: #fff !important;
  border-color: #fff !important;
  color: var(--primary) !important;
}

.home-services .service-inner .btn-light:focus-visible {
  background-color: #fff !important;
  border-color: #fff !important;
  color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,.25);
}

.home-services .service-item img {
  margin-top: -45px;
  padding-left: 45px;
  height: 220px;
  object-fit: cover;
}

.home-services .service-item * {
  position: relative;
  transition: .5s;
  z-index: 1;
}

.home-services .service-item:hover h5,
.home-services .service-item:hover p,
.home-services .service-item:focus-within h5,
.home-services .service-item:focus-within p,
.home-services .service-item:active h5,
.home-services .service-item:active p {
  color: #fff !important;
}

.home-services .service-item:hover a,
.home-services .service-item:focus-within a,
.home-services .service-item:active a {
  padding-left: 45px !important;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: .5rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay .item-title {
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.gallery-item-overlay .item-category {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 50px;
  height: 50px;
  background: rgba(249,115,22,.95);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
  pointer-events: auto;
}

.gallery-item:hover .gallery-zoom-btn,
.gallery-item:focus-within .gallery-zoom-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.glightbox-container {
  z-index: 2147483647 !important;
}

.goverlay {
  background: rgba(2, 6, 23, 0.9) !important;
}

.gslide-media img {
  border-radius: 12px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.testimonial-card .quote-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.testimonial-card .stars { color: var(--accent); font-size: .9rem; margin-bottom: .8rem; }

.testimonial-card .review-text {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .client-info { display: flex; align-items: center; gap: 1rem; }

.testimonial-card .client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-card .client-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-card .client-name { font-weight: 700; font-size: .95rem; color: var(--secondary); }
.testimonial-card .client-company { font-size: .8rem; color: #94a3b8; }

/* ── Testimonial Submit Form ────────────────────────────── */
.testimonial-submit-card {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%), #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-submit-card .form-control,
.testimonial-submit-card .form-select {
  border-radius: 12px;
  border-color: #dbe3ee;
  padding: .72rem .9rem;
  font-size: .92rem;
}

.testimonial-submit-card .form-control:focus,
.testimonial-submit-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(249, 115, 22, .15);
}

/* ── Team Cards ─────────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-card .team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-card .team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.team-card:hover .team-photo-wrap img { transform: scale(1.06); }

.team-card .team-social {
  position: absolute;
  inset: 0;
  background: rgba(249,115,22,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social { opacity: 1; }

.team-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.team-social a:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.15);
}

.team-card .card-body { padding: 1.25rem; }
.team-card .team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.team-card .team-pos { font-size: .82rem; color: var(--primary); font-weight: 600; }
.team-card .team-desc { font-size: .82rem; color: #64748b; margin-top: .5rem; line-height: 1.6; }

/* ── Stats / Counter ────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(249,115,22,.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.stat-card:hover .stat-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(10deg);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: .3rem;
  letter-spacing: .5px;
}

/* ── Process / Timeline ─────────────────────────────────── */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}

.process-step:last-child::after { display: none; }

.process-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  background: var(--grad-primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.12);
}

.process-number {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title { font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.process-desc  { font-size: .82rem; color: #64748b; }

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--secondary);
  background: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(249,115,22,.05);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .8rem;
  color: var(--primary);
  width: auto;
  height: auto;
  transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after { content: '\f068'; }

.faq-accordion .accordion-body {
  font-size: .9rem;
  color: #64748b;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--grad-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}

/* ── About Page ──────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--grad-primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.experience-badge .label {
  font-size: .8rem;
  font-weight: 600;
  opacity: .9;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .95rem;
}

.why-list li .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(249,115,22,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ── Page Hero Banner ───────────────────────────────────── */
.page-hero {
  background: var(--grad-dark);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="15" fill="rgba(249,115,22,.08)"/><circle cx="80" cy="70" r="20" fill="rgba(251,191,36,.05)"/></svg>');
}

.page-hero .page-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.page-hero .breadcrumb-item.active,
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent);
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.contact-icon {
  width: 54px;
  height: 54px;
  background: rgba(249,115,22,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  background: var(--grad-primary);
  color: #fff;
}

.contact-label { font-size: .78rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .25rem; }
.contact-value { font-weight: 600; font-size: .95rem; color: var(--secondary); }

/* Contact form */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  font-size: .9rem;
  transition: var(--transition);
  background: #fff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249,115,22,.1);
}

/* ── Footer ─────────────────────────────────────────────── */
.main-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.75);
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 3px;
  background: var(--grad-primary);
  border-radius: 99px;
}

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-links a i { font-size: .6rem; color: var(--primary); }

.social-icons { display: flex; gap: .6rem; margin-top: 1.2rem; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  border: none;
  padding: .8rem 1.2rem;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .88rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { background: rgba(255,255,255,.12); outline: none; box-shadow: none; }

.newsletter-form button {
  background: var(--grad-primary);
  border: none;
  padding: .8rem 1.5rem;
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
}

/* ── Back to Top ─────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
  z-index: 9998;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover { transform: translateY(-4px); }

/* ── Preloader ───────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .5s, visibility .5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ── Video Cards ────────────────────────────────────────── */
.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.video-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.video-card:hover .video-thumb-wrap img { transform: scale(1.08); }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-icon {
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 0 0 8px rgba(249,115,22,.2);
}

.video-card:hover .play-btn-icon {
  transform: scale(1.15);
  box-shadow: 0 0 0 12px rgba(249,115,22,.15);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: .72rem;
  padding: .2rem .5rem;
  border-radius: 4px;
  font-weight: 600;
}

/* ── Admin Panel ─────────────────────────────────────────── */
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  height: 100vh;
  height: 100dvh;
  background: var(--secondary);
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;
  transition: var(--transition);
  overflow-x: hidden;
  overflow-y: auto;
}

.admin-sidebar .sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.admin-sidebar .nav-link {
  color: rgba(255,255,255,.7);
  padding: .65rem 1.5rem;
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: 0;
  transition: var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(249,115,22,.15);
  color: var(--primary);
  border-right: 3px solid var(--primary);
}

.admin-sidebar .nav-link i { width: 18px; text-align: center; }

.admin-sidebar .nav-section-title {
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem .5rem;
}

.admin-main { margin-left: 260px; min-height: 100vh; background: #f8fafc; }

.admin-topbar {
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.admin-content { padding: 2rem 1.5rem; }

.admin-stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
}

.admin-stat-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.admin-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.admin-stat-icon.orange { background: rgba(249,115,22,.1); color: var(--primary); }
.admin-stat-icon.blue   { background: rgba(59,130,246,.1); color: #3b82f6; }
.admin-stat-icon.green  { background: rgba(34,197,94,.1);  color: #22c55e; }
.admin-stat-icon.purple { background: rgba(168,85,247,.1); color: #a855f7; }

.admin-stat-number { font-size: 1.75rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.admin-stat-label  { font-size: .8rem; color: #94a3b8; margin-top: .2rem; }

/* ── Badges ─────────────────────────────────────────────── */
.badge-status {
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3px;
}

.badge-pending   { background: rgba(234,179,8,.1);    color: #b45309; }
.badge-confirmed { background: rgba(34,197,94,.1);    color: #15803d; }
.badge-cancelled { background: rgba(239,68,68,.1);    color: #b91c1c; }
.badge-completed { background: rgba(99,102,241,.1);   color: #4338ca; }
.badge-new       { background: rgba(249,115,22,.1);   color: var(--primary-dark); }
.badge-read      { background: rgba(148,163,184,.1);  color: #475569; }

/* ── Forms ──────────────────────────────────────────────── */
.form-floating .form-control,
.form-floating .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249,115,22,.1);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.float-animation { animation: float 4s ease-in-out infinite; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .process-step::after { display: none; }
  .hero-stats { gap: 1rem; }
  .hero-stat-card { min-width: 90px; padding: .75rem 1rem; }
  .hero-stat-number { font-size: 1.5rem; }
}

@media (max-width: 767.98px) {
  .py-section { padding-top: 60px; padding-bottom: 60px; }
  .hero-content { padding: 96px 0 32px; }
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-stats { gap: .75rem; }
  .swiper-button-next,
  .swiper-button-prev { display: none !important; }
  .about-img-wrap img { height: 360px; }
  .experience-badge {
    left: 16px;
    bottom: 16px;
    padding: 1rem 1.1rem;
  }
  .experience-badge .years { font-size: 2rem; }
  .home-services .service-item img {
    margin-top: 0;
    padding-left: 0;
    height: 200px;
  }
  .home-services .service-inner { margin-top: 0; }
  .home-services .service-item { margin-top: 0; }
  .home-services .service-text { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .home-services .service-inner .btn-light { margin-left: 1.25rem; }
  .section-title { font-size: 1.65rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-card { padding: 2rem 1rem; }
  .gallery-item img { height: 200px; }
  #backToTop { bottom: 20px; right: 20px; }
}

@media (max-width: 575.98px) {
  .btn-primary-brand,
  .btn-outline-brand { padding: .65rem 1.4rem; font-size: .88rem; }
  .btn-white-brand { padding: .65rem 1.4rem; font-size: .88rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-description { max-width: 92%; }
  .hero-stats {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
  .hero-stat-card {
    min-width: 0;
    width: 100%;
    padding: .85rem .75rem;
  }
  .hero-stat-number { font-size: 1.35rem; }
  .hero-stat-label { font-size: .68rem; }
  .hero-subtitle-badge {
    padding: .35rem .85rem;
    font-size: .72rem;
    letter-spacing: 1px;
  }
  .hero-content .btn-primary-brand,
  .hero-content .btn-white-brand,
  .cta-section .btn-white-brand,
  .cta-section .btn-outline-brand,
  .faq-accordion + .btn-primary-brand {
    width: 100%;
    justify-content: center;
  }
  .about-img-wrap img { height: 280px; }
  .experience-badge .years { font-size: 1.7rem; }
  .faq-accordion .accordion-button,
  .faq-accordion .accordion-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
