/* ===== SKYWAVE HOSPITALITY - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1e3a5f;
  --blue-light: #2563eb;
  --black: #111;
  --white: #fff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-link {
  position: relative;
  transition: var(--transition);
  color: var(--black);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-underline {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--transition);
}

.nav-link:hover .nav-underline,
.nav-link.active .nav-underline {
  width: 100%;
}

.nav-btn-register {
  background: var(--blue);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.nav-btn-register:hover {
  transform: scale(1.05);
}

.nav-btn-logout {
  background: none;
  color: var(--black);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.nav-btn-logout:hover {
  color: #ef4444;
}

.auth-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.auth-logged-in {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-user-name {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  margin-right: 12px;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  font-size: 14px;
}

.mobile-menu.show {
  display: flex;
}

.mobile-logout {
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
  margin-top: 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlideshow 24s infinite;
}

.hero-slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slideshow img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slideshow img:nth-child(3) {
  animation-delay: 12s;
}

.hero-slideshow img:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  5% {
    opacity: 1;
    transform: scale(1.02);
  }

  25% {
    opacity: 1;
    transform: scale(1.05);
  }

  30% {
    opacity: 0;
    transform: scale(1.06);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(100, 99, 112, 48%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-left: 20px;
  padding: 0 40px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-glass {
  position: relative;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 500;
  overflow: hidden;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  color: var(--black);
}

.btn-glass:hover {
  transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 24px;
}

.section-lg {
  padding: 96px 24px;
}

.section-gray {
  background: var(--gray-50);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.section-title span {
  color: var(--blue);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.category-card:hover {
  transform: scale(1.05);
}

.category-icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ===== JOB CARDS ===== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.job-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-location {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.job-salary {
  color: var(--blue);
  font-weight: 600;
  margin-top: 8px;
}

.job-desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 600;
}

.job-link:hover {
  text-decoration: underline;
}

/* ===== COURSES SECTION ===== */
.section-dark {
  background: white;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.course-card {
  position: relative;
  background: rgba(4, 4, 4, 0.968);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  border-radius: 20px 20px 0 0;
}

.course-card--casino::before {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.course-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.course-card--casino .course-icon-wrap {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.course-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.course-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  text-align: left;
  margin-bottom: 28px;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.timeline-step:hover {
  background: rgba(255, 255, 255, 0.08);
}

.timeline-dot {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 2px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #60a5fa;
  transition: var(--transition);
}

.course-card--casino .timeline-dot {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c084fc;
}

.timeline-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-duration {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.timeline-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.4), rgba(6, 182, 212, 0.4));
  margin-left: 35px;
}

.course-card--casino .timeline-connector {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
}

.course-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.course-card--casino .course-btn {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.course-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.course-card--casino .course-btn:hover {
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

@media (max-width: 860px) {
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ===== WHY US CARDS ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
  text-align: center;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
}

.why-accent {
  height: 4px;
  width: 48px;
  background: var(--blue);
  margin: 0 auto 24px;
  border-radius: 50px;
}

.why-icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-title {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-title span {
  color: var(--gray-400);
}

.contact-text {
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 450px;
  line-height: 1.7;
}

.contact-info {
  margin-bottom: 24px;
}

.contact-label {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-note {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

.contact-form-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: var(--transition);
  float: right;
}

.btn-send:hover {
  transform: scale(1.05);
}

/* ===== ABOUT PAGE ===== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}

.about-title span {
  color: var(--blue);
}

.about-text {
  margin-top: 24px;
  color: var(--gray-700);
  font-size: 1.125rem;
  max-width: 450px;
}

.about-subtext {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 700;
  max-width: 380px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-main {
  grid-column: span 2;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.about-img-main img,
.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-side {
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-side img:hover,
.about-img-main img:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

.about-vision {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-vision h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.about-vision p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Leaders */
.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.leader-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.leader-desc {
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
}

.leader-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.leader-img img:hover {
  transform: scale(1.05);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.services-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s;
}

.services-img img:hover {
  transform: scale(1.05);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-300);
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Mission */
.mission-section {
  text-align: center;
  background: var(--gray-100);
  padding: 64px 24px;
}

.mission-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.mission-section p {
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--white);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.auth-card h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.auth-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
  border: 1px solid #fee2e2;
  font-size: 0.875rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
  box-sizing: border-box;
}

.auth-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

.password-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.password-wrapper .auth-input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 1rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.password-toggle:hover {
  color: var(--blue);
}

.auth-hint {
  font-size: 0.8rem;
  color: var(--gray-700);
  font-weight: 600;
}

.btn-auth {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-auth:hover {
  transform: scale(1.03);
}

.btn-auth:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-footer {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-600);
}

.auth-footer a {
  color: var(--blue);
  font-weight: 700;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* ===== ADMIN PAGE ===== */
.admin-page {
  padding: 120px 40px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.admin-page h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin-bottom: 40px;
}

.admin-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 0.875rem;
  outline: none;
}

.admin-input:focus {
  border-color: var(--blue);
}

.admin-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-admin {
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
}

.admin-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.admin-job-card {
  border: 1px solid var(--gray-200);
  padding: 20px;
  border-radius: 8px;
}

.admin-job-card h3 {
  font-weight: 700;
  margin-bottom: 4px;
}

.admin-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.btn-edit {
  background: #facc15;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-delete {
  background: #ef4444;
  color: var(--white);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== USER DASHBOARD ===== */
.user-page {
  padding: 120px 40px 60px;
}

.user-page h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--blue);
}

.user-page p {
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 24px 40px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 64px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-heading {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--gray-300);
  transition: var(--transition);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  /* text-align: center; */
}

.footer-copyright {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 16px;
  text-align: center;

}

.footer-contact-info {
  margin-top: 20px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-brand-text {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  user-select: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease-out;
}

/* ===== HOTEL REGION TABS ===== */
.hotel-region-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.region-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.region-tab:hover {
  background: var(--gray-200);
}

.region-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.region-flag {
  font-size: 1.1rem;
}

/* ===== HOTEL FILTERS ROW ===== */
.hotel-filters-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hotel-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 20px;
  flex: 1;
  min-width: 280px;
  transition: var(--transition);
}

.hotel-search-bar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.hotel-search-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--black);
}

.hotel-country-filter {
  min-width: 200px;
}

.country-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.country-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* ===== ACTIVE FILTER BADGES ===== */
.active-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-badge button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  margin-left: 4px;
  opacity: 0.7;
  transition: var(--transition);
}

.filter-badge button:hover {
  opacity: 1;
}

.clear-all-btn {
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--gray-200);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.clear-all-btn:hover {
  background: var(--gray-300);
}

/* Result count */
.hotel-result-count {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Country badge on hotel card */
.country-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.country-badge.india {
  background: rgba(255, 153, 51, 0.85);
  color: var(--white);
}

.country-badge.intl {
  background: rgba(30, 58, 95, 0.85);
  color: var(--white);
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .hotel-filters-row {
    flex-direction: column;
  }

  .hotel-country-filter {
    min-width: 100%;
  }

  .hotel-search-bar {
    min-width: 100%;
  }
}

/* ===== HOTEL CARDS (Public Page) ===== */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.hotel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.hotel-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.hotel-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.hotel-card:hover .hotel-card-img img {
  transform: scale(1.08);
}

.hotel-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hotel-card-body {
  padding: 20px;
}

.hotel-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.hotel-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hotel-card-location {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.hotel-card-location i {
  color: var(--blue);
  margin-right: 4px;
}

.hotel-card-desc {
  color: var(--gray-500);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Book Now Button */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-book-now:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.btn-book-now i {
  font-size: 0.75rem;
}

/* ===== ADMIN TABS ===== */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.admin-tab {
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  border: 1px solid transparent;
  border-bottom: none;
  position: relative;
  bottom: -2px;
}

.admin-tab.active {
  background: var(--white);
  color: var(--blue);
  border-color: var(--gray-200);
  border-bottom: 2px solid var(--white);
}

.admin-tab i {
  margin-right: 6px;
}

/* ===== ADMIN HOTEL FORM ===== */
.admin-hotel-form {
  margin-bottom: 40px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.admin-form-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.platform-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.platform-input .admin-input {
  flex: 1;
}

/* Image Preview */
.admin-img-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 160px;
  border: 1px solid var(--gray-200);
}

.admin-img-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.btn-remove-img {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn-remove-img:hover {
  background: #ef4444;
}

/* Admin Hotel Cards */
.admin-hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

.admin-hotel-card {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.admin-hotel-card:hover {
  box-shadow: var(--shadow);
}

.admin-hotel-img {
  width: 140px;
  min-height: 140px;
  flex-shrink: 0;
}

.admin-hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-hotel-info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-hotel-info h3 {
  font-size: 1rem;
  font-weight: 700;
}

.admin-hotel-info p {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.admin-hotel-info i {
  color: var(--blue);
  margin-right: 4px;
}

.hotel-stars-sm {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.hotel-price-sm {
  color: var(--blue);
  font-weight: 600;
}

.hotel-link-count {
  color: var(--gray-400);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-hotel-card {
    flex-direction: column;
  }

  .admin-hotel-img {
    width: 100%;
    height: 160px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOADING ===== */
.loading-text {
  color: var(--gray-500);
  font-size: 1rem;
  padding: 20px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .contact-grid,
  .about-hero-grid,
  .leader-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .leader-grid .leader-img {
    order: -1;
  }

  .section-lg {
    padding: 48px 16px;
  }

  .admin-page {
    padding: 100px 16px 40px;
  }
}

/* ==================== Admin Messages ==================== */
.admin-messages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-message-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.admin-message-card:hover {
  border-color: var(--blue);
}

.msg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.msg-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.msg-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.msg-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.msg-email {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin: 2px 0 0;
}

.msg-email i {
  margin-right: 4px;
  font-size: 0.75rem;
}

.msg-date {
  font-size: 0.78rem;
  color: var(--gray-500);
  white-space: nowrap;
}

.msg-date i {
  margin-right: 4px;
}

.msg-body {
  color: rgb(37, 36, 36);
  line-height: 1.6;
  font-size: 0.92rem;
  margin: 0;
  padding-left: 54px;
}

.contact-success {
  text-align: center;
  padding: 40px 20px;
}

@media (max-width: 600px) {
  .msg-body {
    padding-left: 0;
  }

  .msg-header {
    flex-direction: column;
  }
}