/* ==========================================================================
   LOURDES TRAVEL TECHNOLOGY - FLYSHOP THEME MATCH
   ========================================================================== */

/* --- 1. CSS Variables & Theme Setup --- */
:root {
  /* Brand Colors (Lourdes Orange/Yellow adapted from logo) */
  --primary: #ff9800;
  /* Deep Orange */
  --primary-light: #ffb74d;
  --primary-dark: #f57c00;
  --accent: #ffc107;
  /* Amber/Yellow from logo */

  /* Neutral Colors (Flyshop clean aesthetic) */
  --bg-main: #ffffff;
  --bg-gray: #f9fafb;
  --bg-gray-dark: #f3f4f6;

  /* Text Colors */
  --text-main: #111827;
  /* Near Black */
  --text-muted: #6b7280;
  /* Gray for subtitles */
  --text-light: #9ca3af;

  /* Base Colors mapped to avoid transparency issues */
  --white: #ffffff;
  --dark: #111827;

  /* Borders & Shadows */
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 25px 50px -12px rgba(0, 0, 0, 0.08);

  /* Spacing & Layout */
  --container-max: 1280px;
  --section-padding: 6rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Typography */
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- 2. Base Reset & Global Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- 3. Typography Utility Classes --- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-muted {
  color: var(--text-muted);
}

.text-gray {
  color: var(--text-muted);
}

.text-gray-light {
  color: var(--text-light);
}

.text-dark {
  color: var(--text-main);
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- 4. Layout & Spacing Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Padding */
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

/* Margins */
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Display & Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Backgrounds & Borders */
.bg-white {
  background-color: var(--bg-main);
}

.bg-gray {
  background-color: var(--bg-gray);
}

.bg-gray-dark {
  background-color: var(--bg-gray-dark);
}

.border-base {
  border: 1px solid var(--border-color);
}

.border-b {
  border-bottom: 1px solid var(--border-color);
}

.border-t {
  border-top: 1px solid var(--border-color);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Sizing Utilities */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

/* --- 5. Components --- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

.btn-text {
  background: transparent;
  border: none;
  padding: 0;
}

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

/* Section Headings */
.section-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  /* Bolder headings to match Flyshop */
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
}

/* --- 6. Top Bar --- */
.top-bar {
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-social {
  display: flex;
  gap: 1.5rem;
}

.top-social i {
  margin-right: 0.375rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* --- 7. Header Navigation --- */
.header {
  background-color: var(--white, #ffffff);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow-md, rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform-origin: left center;
}

.header .logo-img {
  margin-top: -70px;
  margin-bottom: -70px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 80px;
  }

  .header .logo-img {
    margin-top: -15px;
    margin-bottom: -15px;
  }
}

.nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-main);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .header-actions .btn {
    display: none;
  }
}

/* --- 8. Hero Section --- */
.hero-section {
  padding: 100px 0 160px;
  position: relative;
  background-color: var(--bg-main);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section.has-custom-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 23, 42, 0.18),
    rgba(15, 23, 42, 0.22)
  );
  pointer-events: none;
}

.hero-section.has-custom-bg .hero-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-section.has-custom-bg .hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.hero-section.has-custom-bg .btn-text,
.hero-section.has-custom-bg .badge {
  color: rgba(255, 255, 255, 0.95);
}

.hero-section.has-custom-bg .badge {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-main);
}

/* Metrics Glass Card (Flyshop Style) */
.metrics-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 900px;
  margin: 4rem auto -200px;
  /* Pulls it down over next section */
  position: relative;
  z-index: 10;
}

.metrics-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-item {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
}

.metric-item h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.metric-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.metrics-footer {
  margin-top: 2rem;
  text-align: left;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-card {
    padding: 2rem;
    margin-top: 3rem;
    margin-bottom: -150px;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 9. Partners Section --- */
.partners-section {
  padding-top: 220px;
  /* Accounts for overlapping metrics card */
  padding-bottom: 2rem;
  background-color: var(--bg-main);
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner-logo {
  height: 80px;
  /* Doubled from 40px */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Specific sizing bump for Razorpay as requested */
.razorpay-logo {
  height: 110px !important;
  max-height: none;
  width: auto !important;
}

.partner-logo:hover {
  transform: scale(1.1);
}

/* --- 10. Philosophy Section (Icon Grid) --- */
.philosophy-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: var(--bg-main);
  box-shadow: var(--shadow-sm);
}

/* --- 11. Split Layouts (Solutions & Ecosystem) --- */
.split-layout {
  display: flex;
  align-items: center;
  gap: 6rem;
  /* Increased gap */
}

.split-layout.row-reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  width: 100%;
}

.split-image img,
.split-image .image-placeholder {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .split-layout {
    flex-direction: column;
    text-align: center;
  }

  .split-layout.row-reverse {
    flex-direction: column;
  }

  .checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .numbered-item {
    text-align: left;
  }
}

/* --- 12. Services Grid Outline --- */
.service-card {
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.1),
    rgba(255, 193, 7, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 152, 0, 0.2);
  transition: all 0.4s ease;
}

.service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: rotate(5deg) scale(1.1);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

/* --- 13. Contact Form / Footer --- */
.contact-section {
  border-top: 1px solid var(--border-color);
}

.contact-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(255, 152, 0, 0.14);
  border: 1px solid rgba(255, 152, 0, 0.24);
  border-radius: 9999px;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-link {
  color: var(--primary-dark);
  font-weight: 600;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-content {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-benefits {
  display: grid;
  gap: 0.85rem;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-benefits i {
  color: var(--primary);
}

.contact-form-wrap {
  background: linear-gradient(180deg, #ffffff, #fff8ef);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.callback-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid.single {
  grid-template-columns: 1fr;
}

.form-input {
  outline: none;
  transition: all 0.3s ease;
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--text-main);
}

.form-input:hover {
  border-color: var(--text-light);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.15);
  background-color: var(--white);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

.contact-form-status {
  min-height: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form-status.success {
  color: #15803d;
}

.contact-form-status.error {
  color: #b91c1c;
}

.callback-form button[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 992px) {
  .contact-cards,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-content,
  .contact-form-wrap {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Select with Icons Setup */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid var(--border-color);
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.custom-option:hover {
  background-color: var(--bg-gray);
  color: var(--primary);
}

.custom-option img {
  height: 20px;
  width: auto;
  margin-right: 12px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition:
    filter 0.2s,
    opacity 0.2s;
}

.custom-option:hover img,
.custom-option.selected img {
  filter: grayscale(0%);
  opacity: 1;
}

.custom-option.selected {
  color: #ffffff;
  background-color: var(--primary);
}

.custom-option.selected img {
  filter: brightness(0) invert(1);
}

.custom-select__trigger img {
  height: 20px;
  width: auto;
  margin-right: 12px;
  object-fit: contain;
}

/* --- Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* --- Custom Scrollbar --- */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: var(--bg-gray-dark);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- FAQ Section --- */
.faq-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--bg-gray);
}

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

.faq-details {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-details:hover {
  box-shadow: 0 4px 12px var(--shadow);
}

.faq-summary {
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--primary);
}

.faq-summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.popup-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: popInBottom 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 1s;
  opacity: 0;
  width: 100%;
  max-width: 900px;
  padding: 0 1.5rem;
}

.popup-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 1.5rem 4rem 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 152, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.popup-close:hover {
  color: var(--primary);
}

.popup-icon {
  font-size: 2.5rem;
  background: var(--bg-gray);
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes popInBottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 50px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 768px) {
  .popup-notification {
    bottom: 1rem;
    width: 100%;
    padding: 0 1rem;
  }

  .popup-content {
    padding: 1rem 2.5rem 1rem 1rem;
    gap: 0.75rem;
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 100%;
  }

  .popup-text {
    text-align: left !important;
  }

  .popup-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }

  .popup-text p {
    font-size: 0.8rem;
  }

  .popup-text span {
    font-size: 1rem;
  }

  .popup-icon {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .popup-close {
    top: 10px;
    right: 10px;
    transform: none;
    font-size: 1.25rem;
  }
}
/* Laptop Mockup Styles */
.laptop-mockup {
  position: relative;
  max-width: 100%;
  margin: 2rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-screen {
  position: relative;
  width: 100%;
  background: #000;
  border: 10px solid #2d2d2d;
  border-radius: 12px 12px 0 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 768px) {
  .laptop-screen {
    border-width: 15px;
  }
}

.laptop-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-keyboard {
  position: relative;
  width: 106%;
  height: 15px;
  background: #e0e0e0;
  border-radius: 0 0 15px 15px;
  box-shadow:
    inset 0 -3px 5px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .laptop-keyboard {
    height: 20px;
    border-radius: 0 0 20px 20px;
  }
}

.laptop-trackpad {
  position: absolute;
  top: 0;
  width: 20%;
  height: 30%;
  background: #b3b3b3;
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* --- Admin Popup Updates --- */
.popup-notification.image-poster .popup-content {
  padding: 0;
  max-width: 400px;
  overflow: hidden;
  position: relative;
}
.popup-notification.image-poster .popup-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}
.popup-notification.image-poster .popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-notification.image-poster .popup-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* --- Centered Image Modal Popup --- */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}
.image-modal-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  animation: popupFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.image-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #111827;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.image-modal-close:hover {
  background: #ff9800;
  color: #fff;
  border-color: #ff9800;
}
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
