/* ============================================
   CONAMET - Modern Responsive Website Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #00796B;
  --primary-dark: #004D40;
  --primary-light: #009688;
  --accent: #FF6F00;
  --accent-light: #FFA040;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-section: #f0f4f3;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent);
}

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

ul {
  list-style: none;
  padding: 0;
}

.section-padding {
  padding: 100px 0;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ---------- Section Label & Heading ---------- */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.text-accent {
  color: var(--accent);
}

/* ---------- Header / Navbar ---------- */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: 80px;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  height: 70px;
}

.header .logo .logo-text {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}

.header .logo .logo-highlight {
  color: var(--primary);
}

.header .logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo-img {
  height: 38px;
}

.header .logo-img-sm {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.header .navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.header .navbar .nav-menu > li {
  position: relative;
}

.header .navbar .nav-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-primary);
  transition: var(--transition);
}

.header .navbar .nav-link:hover,
.header .navbar .nav-link.active {
  color: var(--primary);
}

.header .navbar .nav-link i {
  font-size: 0.7rem;
  margin-left: 3px;
  transition: var(--transition);
}

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover > .dropdown-menu-custom,
.dropdown-sub:hover > .dropdown-menu-custom.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-menu-custom li a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 24px;
}

/* Sub Menu */
.dropdown-sub {
  position: relative;
}

.dropdown-sub > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
}

.mobile-nav-toggle:hover {
  color: var(--primary);
}

/* Header Social */
.header-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-light);
  margin-left: 8px;
  transition: var(--transition);
}

.header-social .social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero .carousel-item {
  height: 100vh;
  min-height: 650px;
}

.hero-slide {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,111,0,0.15);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carousel Controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition);
}

.hero .carousel-control-prev {
  left: 30px;
}

.hero .carousel-control-next {
  right: 30px;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: var(--primary);
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.hero .carousel-control-prev-icon i,
.hero .carousel-control-next-icon i {
  font-size: 1.3rem;
  color: white;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicators button.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,121,107,0.35);
}

.btn-outline-custom {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

/* ---------- About Section ---------- */
.about {
  background: var(--bg);
}

.about-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.glass-card {
  background: linear-gradient(135deg, rgba(0,121,107,0.05), rgba(0,150,136,0.08));
  border: 1px solid rgba(0,121,107,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,121,107,0.2);
}

.about-card-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.about-card-title i {
  font-size: 1.2rem;
  color: var(--primary);
}

.about-card p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.values-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.values-list {
  padding: 0;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: var(--text-light);
}

.values-list li:last-child {
  border-bottom: none;
}

.value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

/* ---------- Services Section ---------- */
.services {
  background: var(--bg-section);
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon.icon-blue {
  background: rgba(33,150,243,0.1);
  color: #2196F3;
}

.service-icon.icon-orange {
  background: rgba(255,111,0,0.1);
  color: var(--accent);
}

.service-icon.icon-pink {
  background: rgba(233,30,99,0.1);
  color: #E91E63;
}

.service-icon.icon-green {
  background: rgba(76,175,80,0.1);
  color: #4CAF50;
}

.service-icon.icon-red {
  background: rgba(244,67,54,0.1);
  color: #F44336;
}

.service-icon.icon-teal {
  background: rgba(0,150,136,0.1);
  color: #009688;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-list {
  padding: 0;
  margin: 12px 0 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-list li i {
  color: var(--primary);
  font-size: 0.85rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* ---------- Impact Section ---------- */
.impact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 30px 30px;
}

.impact-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.impact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-light);
}

.impact-number {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Partners Section ---------- */
.partners {
  background: var(--bg);
}

.partner-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.partner-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.partner-logo-placeholder i {
  font-size: 2.5rem;
  color: var(--primary);
}

.partner-logo-placeholder span {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

/* ---------- Contact Section ---------- */
.contact {
  background: var(--bg-section);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.1rem;
  margin-right: 10px;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form .form-control {
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--bg);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,121,107,0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-brand .logo {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
}

.footer-brand .logo-highlight {
  color: var(--primary-light);
}

.footer-brand .logo-img-footer {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand .logo-img-footer:hover {
  filter: brightness(0) invert(0.9);
}

.footer-desc {
  margin: 16px 0 24px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

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

.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.newsletter-form {
  display: flex;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-light);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .copyright,
.footer-bottom .credits {
  font-size: 0.85rem;
}

.footer-bottom .credits a {
  color: var(--primary-light);
}

.footer-bottom .credits a:hover {
  color: var(--accent);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,121,107,0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Devices (laptops/desktops) */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
  .section-heading {
    font-size: 2.2rem;
  }
}

/* Medium Devices (tablets) */
@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 9999;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }

  .header .navbar.active {
    right: 0;
  }

  .header .navbar .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header .navbar .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .dropdown-menu-custom.show {
    display: block;
  }

  .dropdown-sub > .sub-menu {
    position: static;
    padding-left: 16px;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }

  .impact-number {
    font-size: 2.2rem;
  }
}

/* Small Devices (landscape phones) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .about-card {
    margin-bottom: 12px;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .contact-info-card {
    margin-bottom: 24px;
  }
}

/* Extra Small Devices (portrait phones) */
@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-slide {
    padding-top: 100px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .impact-card {
    padding: 24px 16px;
  }

  .impact-number {
    font-size: 1.8rem;
  }

  .footer-top {
    padding: 50px 0 30px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .values-list li {
    font-size: 0.88rem;
  }

  .partner-card {
    padding: 20px 16px;
  }
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 24px;
}

.page-hero .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb-item.active {
  color: white;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ---------- Registration Section ---------- */
.registration-section {
  background: var(--bg-section);
}

/* Sidebar */
.reg-sidebar-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.reg-sidebar-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.reg-sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,121,107,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.reg-sidebar-icon.icon-orange {
  background: rgba(255,111,0,0.1);
  color: var(--accent);
}

.reg-sidebar-icon.icon-green {
  background: rgba(76,175,80,0.1);
  color: #4CAF50;
}

.reg-sidebar-icon.icon-pink {
  background: rgba(233,30,99,0.1);
  color: #E91E63;
}

.reg-sidebar-card h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.reg-sidebar-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.reg-checklist {
  padding: 0;
  margin: 12px 0 0;
}

.reg-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.reg-checklist li i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* Registration Form Card */
.reg-form-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

.reg-form-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 32px 36px;
  color: white;
}

.reg-form-header h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-form-header p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.reg-form {
  padding: 36px;
}

/* Category Selection */
.reg-label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 12px;
}

.category-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.category-option input {
  display: none;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
}

.category-card:hover {
  border-color: var(--primary);
  background: rgba(0,121,107,0.02);
}

.category-option input:checked + .category-card {
  border-color: var(--primary);
  background: rgba(0,121,107,0.06);
  box-shadow: 0 0 0 3px rgba(0,121,107,0.1);
}

.category-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0,121,107,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.category-option input:checked + .category-card .category-icon {
  background: var(--primary);
  color: white;
}

.category-text strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--dark);
}

.category-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Form Sections */
.form-section-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-section);
  margin-bottom: 16px;
}

.form-section-title i {
  color: var(--primary);
}

.form-section-subtitle {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Form Fields */
.form-floating-custom {
  margin-bottom: 0;
}

.form-floating-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.form-floating-custom .form-control {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--bg);
  transition: var(--transition);
  width: 100%;
}

.form-floating-custom .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,121,107,0.1);
  outline: none;
}

.form-floating-custom textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-floating-custom .form-control::placeholder {
  color: var(--text-muted);
}

/* File Upload */
.file-upload-card {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition);
  overflow: hidden;
}

.file-upload-card:hover {
  border-color: var(--primary);
  background: rgba(0,121,107,0.02);
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-label i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  opacity: 0.7;
}

.file-upload-text {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.file-upload-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.file-upload-card.has-file {
  border-color: var(--primary);
  border-style: solid;
  background: rgba(0,121,107,0.04);
}

.file-upload-card.has-file .file-upload-label i {
  color: var(--primary);
  opacity: 1;
}

.file-name {
  display: none;
  font-size: 0.8rem;
  color: var(--primary);
  padding: 0 16px 12px;
  text-align: center;
  font-weight: 500;
}

.file-upload-card.has-file .file-name {
  display: block;
}

/* Experience Options */
.experience-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.experience-checkbox input {
  display: none;
}

.experience-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.experience-card:hover {
  border-color: var(--primary);
  background: rgba(0,121,107,0.02);
}

.experience-checkbox input:checked + .experience-card {
  border-color: var(--primary);
  background: rgba(0,121,107,0.06);
  box-shadow: 0 0 0 3px rgba(0,121,107,0.1);
}

.experience-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0,121,107,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.experience-text strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--dark);
}

.experience-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.experience-check {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.experience-checkbox input:checked + .experience-card .experience-check {
  opacity: 1;
}

/* Form Submit */
.form-submit-area {
  text-align: center;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
}

.form-note i {
  color: var(--primary);
}

/* Form success state */
.form-success-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.97);
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
}

.form-success-overlay.visible {
  display: flex;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  animation: scaleIn 0.4s ease;
}

.form-success-overlay h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success-overlay p {
  color: var(--text-light);
  font-size: 0.95rem;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ============================================
   AUTH PAGES (Register / Login)
   ============================================ */

/* Auth Banner (portal page) */
.auth-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 8px 0;
  z-index: 10001;
  font-size: 0.85rem;
  font-family: var(--font-primary);
}

.auth-banner + #authBannerSpacer {
  height: 40px;
}

.auth-banner-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  transition: var(--transition);
}

.auth-banner-link:hover {
  color: white;
}

/* Login Notice */
.login-notice {
  padding: 60px 0;
}

.login-notice-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 550px;
  margin: 0 auto;
}

.login-notice-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(0,121,107,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.login-notice-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.login-notice-card p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.login-notice-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.auth-body {
  background: var(--bg-section);
}

/* Header for auth pages */
.auth-header-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-header-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: var(--font-primary);
}

.btn-outline-custom-sm {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: var(--transition);
  cursor: pointer;
}

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

/* Auth Section */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 16px 60px;
}

.auth-container {
  width: 100%;
  max-width: 520px;
}

/* Auth Card */
.auth-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.04);
}

.auth-card-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.auth-logo .logo-highlight {
  color: var(--primary);
}

.auth-logo .logo-img-auth {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.auth-card-header h1 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.auth-card-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Steps Indicator */
.auth-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.auth-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.auth-step.active .step-number {
  background: var(--primary);
  color: white;
}

.auth-step.completed .step-number {
  background: #4CAF50;
  color: white;
}

.auth-step span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-weight: 500;
  white-space: nowrap;
}

.auth-step.active span {
  color: var(--primary);
}

.auth-step.completed span {
  color: #4CAF50;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 20px;
  max-width: 60px;
  transition: var(--transition);
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Form Group */
.form-group-custom {
  margin-bottom: 20px;
}

.form-group-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap > i:first-child {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  z-index: 1;
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,121,107,0.1);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

select.form-control-custom {
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* Password Toggle */
.password-toggle {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  z-index: 1;
  transition: var(--transition);
}

.password-toggle:hover {
  color: var(--primary);
}

/* Password Strength */
.password-strength {
  margin-top: 8px;
}

.strength-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: var(--transition);
}

.strength-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Password Match */
.password-match {
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 18px;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  color: white;
  font-size: 0.7rem;
}

.checkbox-label a {
  color: var(--primary);
  font-weight: 600;
}

/* Forgot Link */
.forgot-link {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.forgot-link:hover {
  color: var(--accent);
}

/* Auth Buttons */
.auth-next-btn {
  margin-top: 24px;
}

.auth-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.auth-nav-btns .btn {
  flex: 1;
}

.btn-outline-custom-full {
  display: inline-block;
  padding: 13px 24px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-custom-full:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Review Card */
.review-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
}

.review-card h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.review-card h4 i {
  color: var(--primary);
}

.review-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-weight: 500;
}

.review-value {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.review-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,121,107,0.06);
  border: 1px solid rgba(0,121,107,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 20px;
}

.review-note i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.review-note p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Social Auth */
.auth-social {
  display: flex;
  gap: 12px;
}

.social-auth-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--bg);
}

.social-auth-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,121,107,0.03);
}

.social-auth-btn i {
  font-size: 1.1rem;
}

/* Footer Link */
.auth-footer-link {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.auth-footer-link a {
  color: var(--primary);
  font-weight: 600;
}

.auth-footer-link a:hover {
  color: var(--accent);
}

/* Auth Responsive */
@media (max-width: 576px) {
  .auth-card {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .auth-card-header h1 {
    font-size: 1.3rem;
  }

  .auth-step span {
    font-size: 0.65rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .auth-social {
    flex-direction: column;
  }

  .auth-nav-btns {
    flex-direction: column-reverse;
  }

  .auth-header-links {
    display: none;
  }

  .auth-footer-link {
    display: block;
  }
}

/* ============================================
   RESPONSIVE - REGISTRATION
   ============================================ */

@media (max-width: 992px) {
  .page-hero {
    padding: 160px 0 60px;
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .reg-sidebar {
    order: 2;
  }

  .category-options {
    grid-template-columns: 1fr;
  }
}

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

  .reg-form-header {
    padding: 24px;
  }

  .reg-form-header h3 {
    font-size: 1.2rem;
  }

  .page-hero {
    padding: 140px 0 50px;
    min-height: 260px;
  }

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

  .page-hero p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .reg-form {
    padding: 20px 16px;
  }

  .reg-form-header {
    padding: 20px;
  }

  .reg-sidebar-card {
    padding: 20px;
  }

  .category-card {
    padding: 16px;
  }

  .experience-card {
    padding: 16px;
  }

  .file-upload-label {
    padding: 20px 16px;
  }
}

/* Smooth scroll for anchor links */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
