:root {
      --ax-burgundy: #7b1113;
      --ax-navy: #0f335f;
      --ax-teal: #008c99;
      --ax-gold: #f2b441;
      --ax-bg: #050711;
      --ax-bg-soft: #050b1a;
      --ax-text: #f5f7ff;
    }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }


    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: radial-gradient(circle at top, #11172a 0%, var(--ax-bg) 55%);
      color: var(--ax-text);
      overflow-x: hidden;
    }


    a {
      color: inherit;
      text-decoration: none;
    }


    /* TOP CONTACT BAR */
    .top-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 80;
      background: rgba(2, 5, 13, 0.95);
      color: rgba(230, 236, 255, 0.9);
      font-size: 0.8rem;
      padding: 4px 4vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      backdrop-filter: blur(10px);
    }


    .top-bar-left, .top-bar-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }


    .top-bar-left span {
      white-space: nowrap;
    }


    @media (max-width: 480px) {
      .top-bar { justify-content: center; }
      .top-bar-right { display: none; }
    }


    /* MAIN NAV */
    header.main {
      position: fixed;
      top: 24px;
      left: 0;
      right: 0;
      z-index: 90;
      transition: all 0.2s ease;
      background: linear-gradient(to bottom, rgba(5, 7, 17, 0.95), rgba(5, 7, 17, 0.12));
      backdrop-filter: blur(10px);
    }


    header.main.floating {
      background: linear-gradient(to bottom, rgba(5, 7, 17, 0.96), rgba(5, 7, 17, 0.94));
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
      transform: translateY(-4px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }


    .nav-inner {
      margin: 0; 
      width: 100%;
      padding: 12px 4vw;
      display: flex;
      align-items: center;
    }

    .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;          /* logo width only, stays extreme left */
    }

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

    .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;          /* fixed width block */
    margin-left: auto;       /* pushes it to the extreme right */
    }


    .nav-logo img {
      height: 48px;
      width: auto;
      filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
    }


    .nav-links {
    flex: 1;                 /* takes remaining space between left and right */
    display: flex;
    justify-content: center; /* center the links */
    gap: 18px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 232, 255, 0.94);
    flex-wrap: wrap;
    }


    .nav-links a {
      position: relative;
      white-space: nowrap;
    }


    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -5px;
      height: 2px;
      transform: scaleX(0);
      background: linear-gradient(90deg, var(--ax-gold), var(--ax-teal));
      transition: transform 0.3s ease;
      transform-origin: center;
    }


    .nav-links a:hover::after {
      transform: scaleX(1);
    }


    .nav-pill {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(7, 12, 33, 0.88);
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    }


    .nav-auth a {
      font-weight: 600;
      font-size: 0.8rem;
    }
    
  .nav-auth a + a {
    margin-left: 12px;   /* adjust spacing as needed */
  }

    .nav-auth span {
      opacity: 0.7;
      margin: 0 4px;
    }


    .nav-toggle {
      display: none;
      border: none;
      background: none;
      color: #f5f7ff;
      cursor: pointer;
      padding: 6px;
    }


    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: #f5f7ff;
      margin: 4px 0;
      border-radius: 999px;
      transition: all 0.3s ease;
    }


    .nav-toggle.active span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }


    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }


    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }


    .mobile-menu {
      display: none;
      background: rgba(5, 7, 17, 0.98);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      z-index: 85;
    }


    .mobile-menu.open {
      display: block;
    }


    .mobile-menu-inner {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }


    @media (max-width: 915px) {
    .nav-links { display: none; }  /* hide center links on mobile */
    .nav-toggle { display: block; }
    }


    /* HERO */
    .hero {
      position: relative;
      /*margin-top: 72px;*/
      height: 100vh;
      overflow: hidden;
    }


    .hero-slider {
      position: relative;
      width: 100%;
      height: 100%;
    }


    .slide-track {
      height: 100%;
      width: 100%;
    }


    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(1.02);
      transition: all 0.8s ease;
      background-size: cover;
      background-position: center;
    }


    .slide.active {
      opacity: 1;
      transform: scale(1);
    }


    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5, 7, 17, 0.92), rgba(5, 7, 17, 0.3));
    }


    .hero-content {
      position: absolute;
      inset: 0;
      padding: 0 6vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      z-index: 2;
    }


    @media (max-width: 640px) {
      .hero-content {
        padding: 0 5vw 40px;
        justify-content: flex-end;
      }
    }


    .hero-kicker {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ax-gold);
      margin-bottom: 12px;
    }


    .hero-title {
      font-size: clamp(2.2rem, 6vw, 4rem);
      line-height: 1.1;
      margin-bottom: 16px;
    }


    .hero-title span {
      background: linear-gradient(120deg, var(--ax-gold), var(--ax-teal), #f25f3a);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }


    .hero-sub {
      font-size: 1.1rem;
      max-width: 550px;
      color: rgba(245, 247, 255, 0.9);
      margin-bottom: 24px;
      line-height: 1.6;
    }


    .hero-cta-row {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    h1 {
      font-size: clamp(2.2rem, 3.8vw, 3.1rem);
      line-height: 1.1;
      margin-bottom: 14px;
    }
    
    h1 span {
      background: linear-gradient(
        120deg,
        var(--ax-gold),
        var(--ax-teal),
        #f25f3a
      );
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    @media (max-width: 480px) {
      .hero-cta-row {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }
      .hero-cta-row > * {
        flex: 1;
        text-align: center;
      }
    }


    .btn-primary, .btn-ghost {
      padding: 14px 28px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
    }


    .btn-primary {
      background: linear-gradient(135deg, var(--ax-gold), var(--ax-teal));
      color: #050711;
      box-shadow: 0 12px 30px rgba(242, 180, 65, 0.4);
    }


    .btn-ghost {
      background: rgba(255, 255, 255, 0.08);
      color: #f5f7ff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }


    .hero-badge-row {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }


    .hero-badge {
      padding: 8px 16px;
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      backdrop-filter: blur(10px);
    }


    .hero-dots {
      position: absolute;
      left: 50%;
      bottom: 30px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }


    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }


    .hero-dot.active {
      background: linear-gradient(135deg, var(--ax-gold), var(--ax-teal));
      transform: scale(1.2);
    }


    /* SECTIONS */
    section {
      /*padding: 80px 6vw;*/
    }


    .section-inner {
      max-width: 1400px;
      margin: 0 auto;
    }


    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }


    .section-kicker {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--ax-gold);
      margin-bottom: 12px;
    }


    .section-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }


    .section-sub {
      font-size: 1.1rem;
      color: rgba(219, 227, 255, 0.8);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }


    /* SERVICES - BIGGER GRID BOXES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }


    .service-card-slider {
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 1;
      background: linear-gradient(145deg, rgba(4, 7, 24, 0.95), rgba(3, 6, 18, 0.95));
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }


    .service-card-slider:hover {
      transform: translateY(-12px);
    }


    .service-card-slider-inner {
      position: relative;
      flex: 1;
      overflow: hidden;
    }


    .service-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.6s ease;
      background-size: cover;
      background-position: center;
    }


    .service-slide.active {
      opacity: 1;
    }


    .service-card-meta {
      padding: 24px;
      background: linear-gradient(to top, rgba(2, 4, 12, 0.95), rgba(2, 4, 12, 0.85));
    }


    .service-card-meta h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: white;
    }


    .service-card-meta p {
      color: rgba(211, 221, 250, 0.9);
      line-height: 1.6;
      font-size: 1rem;
    }


    .service-slider-dots {
      position: absolute;
      left: 50%;
      bottom: 20px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }


    .service-slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }


    .service-slider-dot.active {
      background: linear-gradient(135deg, var(--ax-gold), var(--ax-teal));
      transform: scale(1.3);
    }


    /* ABOUT - ENHANCED WITH COUNTERS */
    .strip {
      background: linear-gradient(135deg, var(--ax-navy) 0%, var(--ax-teal) 100%);
      padding: 100px 6vw 80px;
      position: relative;
      overflow: hidden;
    }


    .strip::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--ax-gold), var(--ax-teal), transparent);
    }


    .about-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 60px;
      align-items: start;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }


    .about-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }


    .about-text {
      color: rgba(253, 253, 255, 0.95);
      font-size: 1.05rem;
      line-height: 1.75;
    }


    .about-text h2 {
      font-size: 2.2rem;
      margin-bottom: 30px;
      color: white;
    }


    .about-text p {
      margin-bottom: 20px;
    }


    .about-text p:last-child {
      margin-bottom: 0;
    }


    /* COLORFUL COUNTERS BELOW IMAGE */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }


    .stat-item {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 25px 20px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }


    .stat-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--ax-gold), var(--ax-teal));
    }


    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 140, 153, 0.3);
    }


    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--ax-gold), var(--ax-teal));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: block;
      margin-bottom: 8px;
    }


    .stat-label {
      font-size: 0.9rem;
      color: rgba(245, 247, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
    }


    .about-image {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      height: 450px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.4)),
                  url("images/about.png") center/cover;
      margin-bottom: 30px;
    }


    .about-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(242, 180, 65, 0.3), transparent 50%),
                  radial-gradient(circle at 70% 70%, rgba(0, 140, 153, 0.4), transparent 50%);
    }


    @media (max-width: 1100px) {
      .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }


      .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
    }


    @media (max-width: 600px) {
      .about-stats {
        grid-template-columns: 1fr;
      }
    }


    /* CONTACT */
    .contact-section {
      background: var(--ax-bg-soft);
      padding: 100px 6vw 80px;
    }


    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: 
        "info form"
        "map map";
      gap: 50px;
      max-width: 1400px;
      margin: 0 auto;
    }


    .contact-info {
      grid-area: info;
    }


    .contact-form-wrapper {
      grid-area: form;
    }


    .contact-map-wrapper {
      grid-area: map;
      margin-top: 40px;
    }


    @media (max-width: 900px) {
      .contact-layout {
        grid-template-columns: 1fr;
        grid-template-areas: 
          "info"
          "form"
          "map";
        gap: 40px;
      }
    }


    .contact-details {
      font-size: 1rem;
      color: rgba(213, 222, 250, 0.95);
    }


    .contact-details strong {
      color: white;
      font-size: 1.1rem;
    }


    .contact-details p {
      margin-bottom: 20px;
      line-height: 1.7;
    }


    .contact-form {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.6));
      border-radius: 25px;
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    }


    .field-row {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
    }


    .field-row input {
      flex: 1;
    }


    input, textarea {
      width: 100%;
      padding: 16px 20px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(3, 7, 18, 0.9);
      color: var(--ax-text);
      font-size: 1rem;
      transition: all 0.3s ease;
    }


    input:focus, textarea:focus {
      outline: none;
      border-color: var(--ax-teal);
      box-shadow: 0 0 0 3px rgba(0, 140, 153, 0.2);
    }


    textarea {
      min-height: 120px;
      resize: vertical;
    }


    .contact-form button {
      width: 100%;
      padding: 16px;
      margin-top: 10px;
    }


    .contact-map {
      position: relative;
      height: 350px;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }


    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }


    @media (max-width: 768px) {
      .contact-map { height: 280px; }
    }


    /* FOOTER */
    footer {
      background: #030308;
      padding: 40px 6vw 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }


    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }


    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: rgba(177, 191, 225, 0.8);
    }


    .footer-legal-links {
      display: flex;
      gap: 20px;
      font-size: 0.85rem;
    }


    .footer-center {
      display: flex;
      gap: 24px;
      flex: 1;
      justify-content: center;
    }


    .footer-right form {
      display: flex;
      gap: 12px;
    }


    .footer-right input {
      padding: 12px 20px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(3, 7, 18, 0.9);
      color: var(--ax-text);
      min-width: 220px;
    }


    .footer-right button {
      padding: 12px 24px;
      border-radius: 25px;
      background: linear-gradient(135deg, var(--ax-gold), var(--ax-teal));
      color: #050711;
      border: none;
      font-weight: 600;
      cursor: pointer;
    }


    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }
      .footer-right form {
        width: 100%;
        justify-content: center;
      }
      .footer-right input {
        flex: 1;
      }
    }


    /* TO TOP BUTTON */
    .to-top {
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, #f25f3a, #f2b441, #40f29b, #00b0ff, #7a5cff, #f25f3a);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
      color: #050711;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: bold;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
      border: none;
    }


    .to-top.show {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 480px) {
      .to-top {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
      }
    }

/* =========================================
   PROFILE PAGE (Updated to match UI Design)
   ========================================= */

.profile-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 4vw 80px;
  background: radial-gradient(circle at top, #11172a 0%, var(--ax-bg) 55%);
}

.profile-container-outer {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
}

/* Main Title Outside the Card */
.profile-main-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #f7f8ff;
  font-weight: 700;
  padding-left: 10px; /* Align slightly with card */
}

/* The Dark Card */
.profile-inner {
  width: 100%;
  background: linear-gradient(145deg, rgba(12, 16, 28, 0.95), rgba(8, 11, 20, 0.98));
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Split similar to image */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-column {
  padding: 40px;
  box-sizing: border-box;
}

.profile-column + .profile-column {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
}

/* --- Left Column: Avatar & Form --- */

.profile-account-inner {
  display: flex;
  gap: 30px;
}

.profile-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
}

.profile-avatar-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 3px;
  /* Teal ring gradient matching image */
  background: conic-gradient(from 180deg, #00b8d4, #008c99, #00b8d4);
  margin-bottom: 12px;
}

.profile-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #999; /* Grey silhouette background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-avatar-icon {
  font-size: 50px;
  color: #ccc; 
  margin-top: 10px; /* Offset to look like silhouette */
}

.btn-chip {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn-ghost-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0, 140, 153, 0.5);
  background: rgba(0, 20, 30, 0.5);
  color: #00b8d4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.field-group input {
  width: 100%;
  background: rgba(10, 14, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
}

.field-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* File Input Styling */
.file-input-wrapper {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(10, 14, 25, 0.6);
  display: flex;
  align-items: center;
  height: 42px;
  overflow: hidden;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file-label {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.file-status {
  padding-left: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* SAVE BUTTON - Updated to match referenced image */
.profile-save-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  /* Horizontal Gradient: Gold to Teal */
  background: linear-gradient(90deg, #f2b441 0%, #008c99 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 180, 65, 0.3); /* Subtle glow */
  transition: transform 0.2s;
}

.profile-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 140, 153, 0.4);
}

/* --- Right Column: Bookings --- */

.profile-bookings {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-card {
  display: flex;
  align-items: center;
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
}

.booking-main {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.booking-icon-box {
  width: 40px;
  height: 40px;
  /* Dark teal tint for icon bg */
  background: rgba(0, 140, 153, 0.15); 
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ax-teal);
}

.booking-info {
  flex: 1;
}

.booking-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.booking-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.booking-pill {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.booking-pill.completed {
  background: rgba(0, 140, 153, 0.2);
  color: #40f29b;
  border: 1px solid rgba(64, 242, 155, 0.2);
}

.booking-pill.upcoming {
  background: rgba(0, 140, 153, 0.2);
  color: #00d2ff;
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.booking-view-all {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .profile-inner {
    grid-template-columns: 1fr;
  }
  .profile-column + .profile-column {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .profile-account-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .profile-avatar-block {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* AUTH PAGE – MATCH MAIN ANIXWAR HERO */

/* Use same full-screen dark background as main hero */
.auth-hero {
    position: relative;
    min-height: 100vh;
    margin-top: 72px; /* same as .hero in style.css */
    background: radial-gradient(circle at top, #11172a 0%, var(--ax-bg) 55%);
    overflow: hidden;
}

/* Optional: very subtle background image fade like main hero */
.auth-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("hero-1.png") center/cover no-repeat;
    opacity: 0.35;
    pointer-events: none;      /* allow clicks to pass through */
    z-index: 0;
}

/* Center forms in the hero like hero-content */
.auth-inner {
    position: absolute;
    inset: 0;
    padding: 0 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;                /* above ::before */
}

/* Container for tabs + forms – translucent panel, not white */
.auth-panel {
    position: relative;        /* create its own stacking context */
    z-index: 3;                /* ensure panel content is on top */
    width: 100%;
    max-width: 520px;
    background: linear-gradient(
        to bottom,
        rgba(5, 7, 17, 0.96),
        rgba(5, 7, 17, 0.92)
    );
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
    padding: 30px 26px 26px;
    backdrop-filter: blur(18px);
}

/* Tabs – match nav / hero accent colours */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 22px;
}
.auth-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(230, 236, 255, 0.4);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.auth-tab.active {
    color: var(--ax-gold);
    border-bottom-color: var(--ax-gold);
}
.auth-tab:hover {
    color: rgba(245, 247, 255, 0.9);
}

.auth-form {
    display: none;
}
.auth-form.active {
    display: block;
}

/* Form fields – same feel as contact form */
.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}
.form-row .form-group {
    flex: 1;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(230, 236, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(3, 7, 18, 0.92);
    color: var(--ax-text);
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.25s ease;
}
.form-group textarea {
    min-height: 90px;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 169, 210, 0.7);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ax-teal);
    box-shadow: 0 0 0 3px rgba(0, 140, 153, 0.3);
}

/* Buttons – reuse .btn-primary from style.css but full-width */
.auth-panel .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Forgot link */
.forgot-link {
    text-align: center;
    margin-top: 16px;
}
.forgot-link a {
    font-size: 0.85rem;
    color: var(--ax-gold);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.forgot-link a:hover {
    color: var(--ax-teal);
}

/* Messages */
.message {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}
.message.success {
    background: rgba(80, 200, 120, 0.12);
    color: #b6f3c9;
    border: 1px solid rgba(80, 200, 120, 0.35);
}
.message.error {
    background: rgba(220, 20, 60, 0.12);
    color: #ffb7c5;
    border: 1px solid rgba(220, 20, 60, 0.4);
}
.message a {
    color: var(--ax-gold);
    text-decoration: underline;
}

/* ==================== MOBILE ==================== */

@media (max-width: 768px) {
    /* Hero and inner layout */
    .auth-hero {
        margin-top: 72px;
        padding: 24px 0 32px;
        min-height: auto;
    }

    .auth-inner {
        position: static;
        inset: auto;
        padding: 0 16px;
        display: block;
        z-index: 1;
    }

    /* Panel fully visible with safe padding */
    .auth-panel {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 14px 24px;
        box-sizing: border-box;
        border-radius: 18px;
    }

    .auth-tabs {
        margin: 0 -4px 18px;
    }

    .auth-tab {
        font-size: 0.8rem;
        padding: 12px 6px;
    }

    /* Form rows: single column */
    .auth-form .form-row {
        display: block;
        margin-bottom: 0;
        gap: 0;
    }

    .auth-form .form-row .form-group {
        width: 100%;
        flex: none;
    }

    .auth-form .form-group {
        width: 100%;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .auth-form .form-group label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .auth-form .form-group input,
    .auth-form .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 14px 12px;
        font-size: 16px; /* prevent zoom on iOS */
        border-radius: 14px;
    }

    .auth-form .form-group textarea {
        min-height: 110px;
    }

    .auth-panel .btn-primary {
        width: 100%;
        display: block;
        margin-top: 6px;
        padding: 14px 12px;
        font-size: 0.95rem;
        border-radius: 16px;
    }
}

/* Extra small screens (under 480px) */
@media (max-width: 480px) {
    .auth-panel {
        padding: 18px 12px 22px;
        border-radius: 18px;
        max-width: 100%;
    }

    .auth-inner {
        padding: 0 10px;
    }
}

/* Mobile Profile Alignment Fix */
@media (max-width: 915px) {
    .profile-form .field-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important; /* Forces left alignment for children */
        text-align: left !important;
        width: 100%;
    }

    .profile-form .field-group label {
        width: 100%;
        text-align: left !important;
        margin-bottom: 5px;
        display: block;
    }

    .profile-form .field-group input {
        width: 100%;
        text-align: left; /* Ensures text inside input is also left-aligned */
    }
    
    /* Ensures the avatar section doesn't force centering on fields below it */
    .profile-account-inner {
        text-align: left !important;
    }
}