:root {
  --primary: #b38f00;
  --primary-dark: #01152a;
  --secondary: #01152a;
  --light: #f8f9fa;
  --dark: #333;
  --gray: #e0e0e0;
  --gray-dark: #757575;
  --danger: #dc3545;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
body {
    /* Remove this line */
    zoom: 90%;
}
html {
  font-size: 12px; /* Base font size */
}

@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  /* Remove zoom property */
}
/* Base Styles */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
              url('{% static "images/banner.png" %}') center/cover no-repeat;
  padding: 2rem;
}

.auth-wrapper {
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth-header {
  padding: 2rem;
  text-align: center;
  background-color: var(--secondary);
  color: white;
}

.auth-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.auth-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

/* Tab Navigation */
.auth-tabs {
  padding: 2rem;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 1.5rem;
}

.tab-button {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tab-button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Form Elements */
.auth-description {
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(179, 143, 0, 0.2);
}

.password-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.eye-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('{% static "icons/eye.svg" %}') center/contain no-repeat;
  opacity: 0.6;
  transition: var(--transition);
}

.toggle-password:hover .eye-icon {
  opacity: 1;
}

/* Buttons */
.auth-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 200;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.auth-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(179, 143, 0, 0.3);
}

/* Alternative Authentication */
.auth-alternatives {
  margin: 1.5rem 0;
  text-align: center;
}

.divider {
  color: var(--gray-dark);
  position: relative;
  display: block;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: var(--gray);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.alternative-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.alternative-button {
  width: 100%;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.alternative-button:hover {
  background-color: #f5f5f5;
}

/* Backup Tokens */
.backup-tokens {
  text-align: center;
  margin: 1.5rem 0;
}

.backup-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: none;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.75rem;
}

.backup-button:hover {
  background-color: rgba(179, 143, 0, 0.1);
}

/* Footer Links */
.auth-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray);
}

.footer-link {
  color: var(--gray-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 576px) {
  .auth-container {
    padding: 0.5rem;
    background: white;
  }

  .auth-wrapper {
    box-shadow: none;
    border-radius: 0;
  }

  .auth-header {
    padding: 1.2rem 1rem;
  }

  .auth-tabs {
    padding: 1.2rem 1rem;
  }
}

  :root {
    --primary: #d3af35; /* ZINARA blue */
    --primary-dark: #01152a;
    --secondary: #01152a; /* Accent orange */
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: rgb(255, 255, 255);
    --black: #212529;
    --success: #28a745;
    --danger: #dc3545;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

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

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

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Header */
.landing-header {
    padding: 20px 0;
    /*position: fixed;*/
    width: 100%;
    top: 0;
    left: 0;
    /*z-index: 1000;*/
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.navbar-actions {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero-section {
    /*padding: 10px 0 60px;*/
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 1) 100%);
}
.testimonials-section {
  margin: -20px;
}
.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    position: absolute;
    right: 0;
    /*top: -0%;*/
    transform: translateY(-60%);
    width: 40%;
    border-radius: 20px;
}

.illustration {
    width: 80%;
    /*max-width: 600px;*/
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Sections Common Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

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

.service-card.highlight {
    border-top-color: var(--secondary);
    position: relative;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-features {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    color: var(--gray);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
}

.rating {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
.landing-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 50px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section {
        /*padding: 10px 0 60px;*/
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}
.progress-bar {
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #b38f00;
    transition: width .6s ease;
}
/* STICK FOOTER TO BOTTOM*/
/* Base layout for sticky footer */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1; /* Pushes footer down if content is short */
}

/* Footer styling (existing code preserved) */
.landing-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
    flex-shrink: 0;
}
