@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #0F172A;
  --secondary-color: #1E3A8A;
  --accent-color: #D4AF37;
  --accent-hover: #e5c354;
  --bg-main: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --border-light: rgba(15, 23, 42, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* SECTION PADDING */
.section-padding {
  padding: 6.5rem 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

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

.btn-outline-dark:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* HEADER & NAVBAR */
.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-sub-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  font-weight: 600;
}

/* NAV LINKS */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-login {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.6rem 1.2rem;
}

.btn-nav-register {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--primary-color);
  color: var(--accent-color);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-color);
}

.btn-nav-register:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* SESSION DASHBOARD GREETING NAVBAR */
#userGreetingNav {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: rgba(30, 58, 138, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(30, 58, 138, 0.2);
}

#userGreetingNav span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.btn-logout {
  font-size: 0.8rem;
  color: #DC2626;
  font-weight: 600;
  cursor: pointer;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* SECTION HEADERS */
.section-header-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.tag-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  background: rgba(30, 58, 138, 0.08);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 58, 138, 0.15);
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* GLASS CARD CONTAINER */
.glass-enterprise-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-enterprise-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

/* UNIVERSAL FORM STYLES */
.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  display: block;
  padding: 0.95rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0;
  background: rgba(212, 175, 55, 0.08);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
  cursor: pointer;
}

/* FOOTER */
.site-footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

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

.footer-contact-info li {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94A3B8;
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-auth-buttons {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-container {
    height: 75px;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* MOBILE NAV OPEN STATE */
.mobile-nav-active .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-bottom: 2px solid var(--accent-color);
}

.mobile-nav-active .nav-auth-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1.5rem;
}
