/* =====================================================
   SECTIONS.CSS — Service Space Technologies
   New sections: About, Process, Testimonials, Contact, Footer
   Matches existing design: #040406 bg, Plus Jakarta Sans,
   Outfit headings, #D4AF37 gold, #3b82f6 blue
   ===================================================== */

/* ── Scroll Animation Classes ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible {
  opacity: 1 !important;
  transform: none !important;
}

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

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

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

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

:root {
  --section-bg: #9a0002;
  --section-bg-alt: #7a0001;
  --card-bg: #efe6dd;
  --text-primary: #ffffff;
  --text-secondary: rgba(239, 230, 221, 0.80);
  --card-text: #1a0001;
  --card-text-muted: #4a0001;
  --accent: #ff1a1a;
  --border-color: rgba(239, 230, 221, 0.20);

  /* ── Cherry Cola palette helpers ── */
  --cc-red: #9a0002;
  --cc-red-dark: #7a0001;
  --cc-red-vdark: #1a0001;
  --cc-cream: #efe6dd;
  --cc-cream-75: rgba(239, 230, 221, 0.75);
  --cc-cream-65: rgba(239, 230, 221, 0.65);
  --cc-cream-50: rgba(239, 230, 221, 0.50);
  --cc-cream-10: rgba(239, 230, 221, 0.10);
}

/* ── Shared Section Styles ── */
.ss-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

/* Centered content wrapper — keeps max-width for text/cards */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 60px;
  box-sizing: border-box;
}

/* gradient-text override in red sections — force pure white */
.about-section .gradient-text,
.process-section .gradient-text,
.testimonials-section .gradient-text,
.contact-section .gradient-text {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: initial !important;
}


.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.section-title-sm {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 60px 0;
}

.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 60px 0;
}

/* ════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════ */
.about-section {
  background: var(--section-bg);
}


.about-story-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about-body-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 20px 0 48px;
  max-width: 580px;
}

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 36px;
  backdrop-filter: blur(10px);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(239, 230, 221, 0.3);
  flex-shrink: 0;
}

/* About Visual Card */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-glow-card {
  width: 100%;
  max-width: 400px;
  background: var(--card-bg);
  border: 1px solid rgba(154, 0, 2, 0.15);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.about-glow-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(154, 0, 2, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.glow-card-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.glow-icon svg {
  width: 44px;
  height: 44px;
}

.glow-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--card-text);
  margin-bottom: 4px;
}

.glow-card-sub {
  font-size: 12.5px;
  color: var(--card-text-muted);
  letter-spacing: 0.04em;
}

.glow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.glow-tag {
  background: rgba(154, 0, 2, 0.08);
  border: 1px solid rgba(154, 0, 2, 0.2);
  color: var(--cc-red);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.glow-phone-cta {
  margin-top: 8px;
}

.glow-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cc-red);
  color: var(--cc-cream);
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(154, 0, 2, 0.3);
  width: 100%;
  justify-content: center;
}

.glow-phone-link:hover {
  background: var(--cc-red-dark);
  box-shadow: 0 0 30px rgba(154, 0, 2, 0.5);
  transform: translateY(-2px);
  color: var(--cc-cream) !important;
}

/* Team */
.team-section {
  padding-top: 40px;
}

.team-heading {
  text-align: center;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #efe6dd;
  border: 1px solid rgba(154, 0, 2, 0.15);
  border-radius: 16px;
  padding: 0;
  /* no padding on top, image goes edge to edge */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px 12px 0 0;
  display: block;
}

.rithvik-photo {
  object-position: top center;
  height: 240px;
}

.team-photo-placeholder {
  background: linear-gradient(135deg, #9a0002, #7a0001);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
}

.placeholder-initial {
  color: #efe6dd;
  font-size: 80px;
  font-weight: 900;
  font-family: inherit;
  line-height: 1;
}

.placeholder-text {
  color: rgba(239, 230, 221, 0.6);
  font-size: 12px;
  margin-top: 4px;
}

.team-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.team-name {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a0001;
  margin-bottom: 0;
}

.team-role {
  color: #9a0002 !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px 0 10px;
}

.team-bio {
  color: #4a0001;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.team-connect-btn {
  background: #9a0002;
  color: #efe6dd !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  width: auto;
}

.team-connect-btn:hover {
  background: var(--cc-red-dark);
  color: #efe6dd !important;
  transform: translateY(-1px);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ════════════════════════════════
   PROCESS SECTION
   ════════════════════════════════ */
.process-section {
  background: var(--section-bg-alt);
}

.process-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.process-heading h2 {
  color: #ffffff;
}

.process-heading h2 span {
  color: #efe6dd !important;
}

.process-heading .section-sub {
  color: var(--text-secondary);
}

/* Infinite Scrolling Process Carousel */
.process-section {
  overflow: hidden;
  background: var(--section-bg-alt);
}

.process-carousel-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  padding: 20px 0 40px;
}

.process-steps {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: processScroll 32s linear infinite;
  padding: 10px 0;
}

.process-steps:hover {
  animation-play-state: paused;
}

@keyframes processScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.process-step-card {
  background: var(--card-bg);
  border: 1px solid rgba(154, 0, 2, 0.12);
  border-radius: 20px;
  padding: 28px 20px 24px;
  width: 240px;
  min-width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(154, 0, 2, 0.2);
  border-color: rgba(154, 0, 2, 0.25);
}

.process-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cc-red);
  color: var(--cc-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  box-shadow: 0 0 0 6px rgba(239, 230, 221, 0.15);
  flex-shrink: 0;
}

.process-step-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.process-step-title {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--card-text);
  margin: 0 0 10px;
}

.process-step-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--card-text-muted);
  margin: 0 0 14px;
  flex: 1;
}

.process-step-tag {
  display: inline-block;
  background: var(--cc-red);
  color: var(--cc-cream);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: auto;
}


/* ════════════════════════════════
   TESTIMONIALS SECTION
   ════════════════════════════════ */
.testimonials-section {
  overflow: hidden;
  background: var(--section-bg);
  padding-bottom: 80px;
}

/* reduce container bottom-padding — carousel sits below */
.testimonials-section .container {
  padding-bottom: 0;
}



.testimonials-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-heading h2 {
  color: #ffffff;
}

.testimonials-heading .section-sub {
  color: var(--text-secondary);
}


.testimonials-carousel-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 36s linear infinite;
  padding: 20px 0;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(154, 0, 2, 0.1);
  border-radius: 20px;
  padding: 28px 28px 24px;
  width: 340px;
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(154, 0, 2, 0.25);
}

/* Large decorative quote mark */
.testimonial-card::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--cc-red);
  position: absolute;
  top: 10px;
  right: 24px;
  opacity: 0.15;
}

.testimonial-stars {
  font-size: 16px;
  color: var(--cc-red);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--card-text);
  margin: 0 0 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--cc-cream);
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--card-text);
}

.author-title {
  font-size: 10.5px;
  color: var(--card-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.contact-section {
  background: var(--section-bg-alt);
}


.contact-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-heading h2 {
  color: #ffffff;
}

.contact-heading .section-sub {
  color: var(--text-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid rgba(154, 0, 2, 0.12);
  border-radius: 16px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  border-color: rgba(154, 0, 2, 0.25);
  box-shadow: 0 10px 30px rgba(154, 0, 2, 0.15);
  transform: translateX(4px);
}

.contact-card--phone {
  border-color: rgba(154, 0, 2, 0.15);
  background: var(--card-bg);
  padding: 24px 22px;
  margin-bottom: 16px;
}

.contact-card-icon {
  font-size: 24px;
  flex-shrink: 0;
  color: var(--cc-red);
}

.contact-card-body {
  flex: 1;
}

.contact-card-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--card-text-muted);
  margin-bottom: 4px;
}

.contact-card--phone .contact-card-label {
  color: var(--cc-red);
}

.contact-card-value {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--card-text);
  line-height: 1.2;
}

.contact-card--phone .contact-card-value {
  font-size: 22px;
  color: var(--cc-red);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.contact-card-meta {
  font-size: 11px;
  color: var(--card-text-muted);
  margin-top: 4px;
}

.contact-card-arrow {
  font-size: 18px;
  color: var(--card-text-muted);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
  color: var(--cc-red);
  transform: translateX(4px);
}

.contact-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #FFFFFF;
  padding: 15px 28px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  box-shadow: 0 4px 30px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #FFFFFF !important;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cc-cream);
  border: 1px solid var(--cc-cream);
  color: var(--cc-red) !important;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: #fffaf7;
  border-color: #fffaf7;
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Enquiry Form */
.enquiry-form-card {
  background: var(--cc-cream);
  border: 1px solid rgba(154, 0, 2, 0.12);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-heading {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--card-text);
  margin: 0 0 6px;
}

.form-sub {
  font-size: 12.5px;
  color: var(--card-text-muted);
  margin: 0 0 28px;
}

.form-group {
  margin-bottom: 18px;
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--card-text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(154, 0, 2, 0.25);
  border-radius: 10px;
  color: var(--card-text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  padding: 12px 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group select option {
  background: #ffffff;
  color: var(--card-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cc-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(154, 0, 2, 0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cc-red);
  color: var(--cc-cream);
  border: none;
  padding: 15px 28px;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(154, 0, 2, 0.3);
  margin-top: 6px;
}

.form-submit-btn:hover {
  background: var(--cc-red-dark);
  box-shadow: 0 0 30px rgba(154, 0, 2, 0.45);
  transform: translateY(-2px);
  color: var(--cc-cream) !important;
}

.form-submit-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.ss-footer {
  background: var(--cc-red-vdark);
  border-top: 3px solid var(--cc-cream);
  margin-top: 60px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 60px 0;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cc-cream-10);
  margin-bottom: 32px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo-wrap .logo-text {
  color: var(--cc-cream) !important;
}

.footer-logo-wrap svg {
  color: var(--cc-cream) !important;
}

.footer-tagline {
  font-size: 12px;
  color: var(--cc-cream-65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-nav a {
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cc-cream-65);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--cc-cream);
}

.footer-contact-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--cc-cream-10);
  margin-bottom: 28px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12.5px;
  color: var(--cc-cream-65);
  transition: color 0.3s ease;
  padding: 0 28px 0 0;
}

.footer-contact-item:hover {
  color: var(--cc-cream);
}

.fc-icon {
  font-size: 15px;
}

.footer-contact-divider {
  width: 1px;
  height: 16px;
  background: var(--cc-cream-10);
  margin-right: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copy,
.footer-love {
  font-size: 11.5px;
  color: var(--cc-cream-50);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════ */
.float-btn {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s ease;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-wa {
  bottom: 24px;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
  animation: waRing 2s ease-in-out infinite;
}

@keyframes waRing {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

.float-call {
  bottom: 92px;
  background: var(--cc-red);
  border: 1px solid rgba(239, 230, 221, 0.3);
  color: var(--cc-cream);
  box-shadow: 0 4px 20px rgba(154, 0, 2, 0.4);
}

.float-call:hover {
  background: var(--cc-red-dark);
  color: var(--cc-cream) !important;
}

.scroll-top-btn {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cc-cream);
  border: 1px solid rgba(154, 0, 2, 0.2);
  color: var(--cc-red);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(154, 0, 2, 0.20);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--cc-red);
}

.scroll-top-btn:hover {
  background: #fffaf7;
  border-color: rgba(154, 0, 2, 0.35);
  color: var(--cc-red);
  box-shadow: 0 6px 20px rgba(154, 0, 2, 0.25);
}

.scroll-top-btn.show {
  display: flex;
}

/* ════════════════════════════════
   SERVICES SECTION & CARDS GRID
   ════════════════════════════════ */
#services {
  background: var(--section-bg);
  padding-bottom: 40px;
}

.services-hero {
  text-align: center;
  padding: 100px 40px 50px;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero .hero-badge {
  background: rgba(239, 230, 221, 0.15);
  border-color: rgba(239, 230, 221, 0.3);
  color: #efe6dd;
}

.services-hero .badge-dot {
  background-color: #efe6dd;
  box-shadow: 0 0 8px rgba(239, 230, 221, 0.8);
}

.services-hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

#services .gradient-text {
  color: #efe6dd !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #efe6dd !important;
  background-clip: initial !important;
}

.services-hero-sub {
  font-size: 16px;
  color: rgba(239, 230, 221, 0.8);
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.service-card {
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.service-card-text {
  flex: 1;
  z-index: 2;
  padding-right: 180px;
}

.service-card-text h2 {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service-card-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 270px;
}

.service-card-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.service-card-btn:hover {
  background: #ffffff;
  transform: scale(1.04);
}

.service-card-image {
  position: absolute;
  right: -30px;
  top: -50px;
  width: 220px;
  height: 320px;
  z-index: 10;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
  transform: scale(1.2) rotate(-5deg);
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.3) rotate(-3deg) translateY(-12px);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .about-story-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .team-photo {
    height: 260px;
  }

  .rithvik-photo {
    height: 270px;
  }

  .process-steps {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 70px 24px;
  }

  .about-section .container,
  .process-section .container,
  .contact-section .container {
    padding: 70px 24px;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .team-photo {
    height: 320px;
    object-fit: cover;
    object-position: top center;
  }

  .rithvik-photo {
    height: 340px;
    object-position: top center;
  }

  .team-photo-placeholder {
    height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-container {
    padding: 40px 24px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-contact-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-admin-link {
    color: rgba(239, 230, 221, 0.45);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-admin-link:hover {
    color: #ff1a1a;
    text-decoration: underline;
  }

  .testimonials-heading {
    padding: 0 24px;
  }

  .testimonial-card {
    width: 280px;
  }

  .enquiry-form-card {
    padding: 28px 20px;
  }

  .process-step-card {
    min-width: 200px;
    width: 200px;
  }

  /* Service Card Mobile Responsiveness */
  .services-hero {
    padding: 80px 20px 30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
    margin-bottom: 40px;
  }

  .service-card {
    flex-direction: column;
    padding: 32px 24px;
    min-height: auto;
    text-align: left;
  }

  .service-card-text {
    padding-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .service-card-text p {
    max-width: 100%;
  }

  .service-card-image {
    position: relative;
    right: auto;
    top: auto;
    width: 160px;
    height: 180px;
    margin-top: 10px;
    align-self: center;
  }

  .service-card-image img {
    width: 100%;
    height: 100%;
    transform: scale(1.1) rotate(0deg);
  }

  .service-card:hover .service-card-image img {
    transform: scale(1.15) translateY(-5px);
  }
}

/* ════════════════════════════════
   RECRUITMENTS PAGE
   ════════════════════════════════ */
.recruit-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(154, 0, 2, 0.35) 0%, transparent 60%),
    #1a0001;
}

.recruit-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.recruit-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 20px;
}

.recruit-title span {
  background: linear-gradient(135deg, #FFF0D4 0%, #ff1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recruit-subtitle {
  font-size: 16px;
  color: rgba(239, 230, 221, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* Form Section */
.recruit-form-section {
  padding: 40px 24px 100px;
  background: #1a0001;
}

.recruit-container {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(26, 0, 2, 0.88) 0%, rgba(18, 0, 1, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(154, 0, 2, 0.25);
}

.recruit-form-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.recruit-form-header p {
  color: rgba(239, 230, 221, 0.7);
  font-size: 14.5px;
  margin: 0 0 32px;
}

.required-star {
  color: #ff1a1a;
  font-weight: 700;
}

.optional-tag {
  color: rgba(239, 230, 221, 0.45);
  font-weight: 400;
  font-size: 12px;
}

.recruit-form .form-group {
  margin-bottom: 24px;
}

.recruit-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: #efe6dd;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recruit-form input,
.recruit-form select,
.recruit-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(239, 230, 221, 0.2);
  background: rgba(35, 0, 3, 0.7);
  color: #FFFFFF !important;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
  outline: none;
}

.recruit-form input::placeholder,
.recruit-form textarea::placeholder {
  color: rgba(239, 230, 221, 0.45);
}

.recruit-form input:focus,
.recruit-form select:focus,
.recruit-form textarea:focus,
.recruit-form input:active,
.recruit-form select:active,
.recruit-form textarea:active {
  background: rgba(35, 0, 3, 0.95) !important;
  color: #FFFFFF !important;
  border-color: #ff1a1a !important;
  box-shadow: 0 0 0 3.5px rgba(255, 26, 26, 0.35) !important;
}

/* Fix browser autofill turning inputs white */
.recruit-form input:-webkit-autofill,
.recruit-form input:-webkit-autofill:hover,
.recruit-form input:-webkit-autofill:focus,
.recruit-form select:-webkit-autofill,
.recruit-form textarea:-webkit-autofill,
.admin-login-card input:-webkit-autofill,
.admin-login-card input:-webkit-autofill:hover,
.admin-login-card input:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF !important;
  -webkit-box-shadow: 0 0 0px 1000px #2a0002 inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Custom Option Chips (Year of Study) */
.option-chips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 6px;
}

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

.option-chip input[type="radio"] {
  display: none !important;
}

.option-chip .chip-content {
  display: block;
  padding: 13px 10px;
  background: rgba(35, 0, 3, 0.7);
  border: 1px solid rgba(239, 230, 221, 0.18);
  border-radius: 12px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: #efe6dd;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.option-chip:hover .chip-content {
  border-color: rgba(255, 26, 26, 0.5);
  background: rgba(255, 26, 26, 0.1);
  transform: translateY(-1px);
}

.option-chip input[type="radio"]:checked + .chip-content {
  background: linear-gradient(135deg, #9a0002 0%, #ff1a1a 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 20px rgba(255, 26, 26, 0.5) !important;
  transform: translateY(-2px);
}

/* Custom Role Cards (Developer / Designer) */
.role-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 6px;
}

@media (max-width: 500px) {
  .role-cards-grid {
    grid-template-columns: 1fr;
  }
}

.role-select-card input[type="radio"] {
  display: none !important;
}

.role-select-card .role-card-inner {
  padding: 20px 16px;
  background: rgba(35, 0, 3, 0.7);
  border: 1.5px solid rgba(239, 230, 221, 0.18);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.role-select-card:hover .role-card-inner {
  border-color: rgba(255, 26, 26, 0.5);
  background: rgba(255, 26, 26, 0.1);
  transform: translateY(-2px);
}

.role-select-card input[type="radio"]:checked + .role-card-inner {
  background: linear-gradient(135deg, rgba(154, 0, 2, 0.6) 0%, rgba(255, 26, 26, 0.35) 100%) !important;
  border-color: #ff1a1a !important;
  box-shadow: 0 0 25px rgba(255, 26, 26, 0.5) !important;
  transform: translateY(-3px);
}

.role-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.role-title {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.role-desc {
  font-size: 12px;
  color: rgba(239, 230, 221, 0.65);
}

.recruit-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .recruit-container {
    padding: 24px 18px;
  }
}

.recruit-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #9a0002 0%, #ff1a1a 100%);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 26, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.recruit-submit-btn:hover {
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.6);
  transform: translateY(-2px);
}

.recruit-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(18, 0, 1, 0.95);
  border: 1px solid rgba(239, 230, 221, 0.2);
  border-radius: 14px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 600;
  color: #efe6dd;
  max-width: 90vw;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  border-color: rgba(255, 26, 26, 0.4);
}

.toast-icon {
  font-size: 18px;
}

/* ════════════════════════════════
   ADMIN PANEL
   ════════════════════════════════ */
.admin-login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(154, 0, 2, 0.25) 0%, transparent 60%),
    #1a0001;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: rgba(239, 230, 221, 0.04);
  border: 1px solid rgba(239, 230, 221, 0.12);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}

.admin-login-logo img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 2px solid rgba(239, 230, 221, 0.2);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(154, 0, 2, 0.3);
}

.admin-login-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.admin-login-sub {
  color: rgba(239, 230, 221, 0.6);
  font-size: 13.5px;
  margin: 0 0 28px;
}

.admin-login-card .form-group {
  margin-bottom: 18px;
  text-align: left;
}

.admin-login-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #efe6dd;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-login-card input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(239, 230, 221, 0.2);
  background: rgba(35, 0, 3, 0.7);
  color: #FFFFFF !important;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.admin-login-card input:focus {
  background: rgba(35, 0, 3, 0.95) !important;
  color: #FFFFFF !important;
  border-color: #ff1a1a !important;
  box-shadow: 0 0 0 3.5px rgba(255, 26, 26, 0.35) !important;
}

.admin-login-card input::placeholder {
  color: rgba(239, 230, 221, 0.45);
}

.admin-login-error {
  color: #ff4444;
  font-size: 13px;
  font-weight: 600;
  min-height: 20px;
  margin-bottom: 10px;
}

/* Dashboard */
.admin-dashboard {
  padding: 100px 24px 60px;
  background: #1a0001;
  min-height: 100vh;
}

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

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.admin-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.admin-count {
  color: rgba(239, 230, 221, 0.6);
  font-size: 14px;
  margin: 4px 0 0;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-search {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(239, 230, 221, 0.2);
  background: rgba(35, 0, 3, 0.7);
  color: #FFFFFF !important;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  min-width: 240px;
  transition: all 0.3s ease;
}

.admin-search:focus {
  background: rgba(35, 0, 3, 0.95) !important;
  border-color: #ff1a1a !important;
  box-shadow: 0 0 0 3px rgba(255, 26, 26, 0.3) !important;
}

.admin-search::placeholder {
  color: rgba(239, 230, 221, 0.4);
}

.admin-logout-btn {
  padding: 10px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 26, 26, 0.5);
  background: rgba(255, 26, 26, 0.12);
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.admin-logout-btn:hover {
  background: rgba(255, 26, 26, 0.25);
  border-color: #ff1a1a;
  color: #FFFFFF;
}

/* Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.admin-stat-card {
  background: rgba(239, 230, 221, 0.04);
  border: 1px solid rgba(239, 230, 221, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.admin-stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
}

.admin-stat-label {
  color: rgba(239, 230, 221, 0.55);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Table */
.admin-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(239, 230, 221, 0.1);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table thead {
  background: rgba(154, 0, 2, 0.2);
}

.admin-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #efe6dd;
  border-bottom: 1px solid rgba(239, 230, 221, 0.12);
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: rgba(239, 230, 221, 0.85);
  border-bottom: 1px solid rgba(239, 230, 221, 0.06);
  vertical-align: top;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.table-phone {
  color: #6baaff;
  text-decoration: none;
}

.table-phone:hover {
  text-decoration: underline;
}

.table-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-year {
  background: rgba(239, 230, 221, 0.1);
  color: #efe6dd;
}

.badge-dev {
  background: rgba(59, 130, 246, 0.15);
  color: #6baaff;
}

.badge-design {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
}

.table-why {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-date {
  white-space: nowrap;
  font-size: 12.5px;
  color: rgba(239, 230, 221, 0.5);
}

.table-loading {
  text-align: center;
  color: rgba(239, 230, 221, 0.5);
  padding: 40px 16px !important;
  font-size: 14px;
}

/* Empty state */
.admin-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.admin-empty .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.admin-empty h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.admin-empty p {
  color: rgba(239, 230, 221, 0.5);
  font-size: 14px;
  margin: 0;
}

/* Admin Mobile Responsive */
@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
  }

  .admin-actions {
    width: 100%;
  }

  .admin-search {
    width: 100%;
    min-width: unset;
  }

  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .admin-stat-card {
    padding: 14px 8px;
  }

  .admin-stat-number {
    font-size: 26px;
  }

  .admin-login-card {
    padding: 28px 20px;
  }
}