/* ===== Global Styles ===== */
:root {
    --rolex-green: #006F4D;
    --rolex-green-dark: #004D35;
    --rolex-gold: #D4A017;
    --rolex-gold-light: #E8B84F;
    --primary-color: #006F4D; /* Rolex green */
    --secondary-color: #D4A017; /* Rolex gold */
    --accent-green: #008060;
    --dark-bg: #1a1a1a;
    --light-bg: #F8F6F3;
    --warm-cream: #FBF9F6;
    --text-dark: #2C3E35;
    --text-light: #5A6B62;
    --white: #ffffff;
    --border-color: #E5E3DF;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* ===== Global Link Styles ===== */
a {
    color: var(--rolex-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--rolex-gold);
}

/* ===== Hide reCAPTCHA Badge ===== */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
}

/* ===== Navigation Bar ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 111, 77, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 64px;
    transition: height 0.3s ease;
}

/* Shrunk navbar on scroll */
.navbar.scrolled .navbar-container {
    height: 50px;
}

.navbar.scrolled .navbar-logo img {
    height: 36px;
}

.navbar.scrolled .navbar-social {
    opacity: 0;
    pointer-events: none;
    width: 0;
    overflow: hidden;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3em;
    font-weight: bold;
    color: var(--rolex-green);
    text-decoration: none;
}

.navbar-logo img {
    height: 44px;
    width: auto;
    transition: height 0.3s ease;
}
/* ensure other brand images scale on small screens; keep navbar logo height fixed */
.brand-logo img, .auth-brand img { max-width: 100%; height: auto; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--rolex-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rolex-green), var(--rolex-gold));
    transition: var(--transition);
}

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

.navbar-social {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.social-icon {
    display: inline-block;
    width: 44px;
    height: 44px;
    transition: var(--transition);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: transparent;
    border: 2px solid var(--rolex-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    color: var(--rolex-green);
}

.dark-mode-toggle:hover {
    background: var(--rolex-green);
    color: var(--white);
    transform: rotate(15deg);
}

.dark-mode-toggle svg {
    position: absolute;
    transition: all 0.3s ease;
}

.dark-mode-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.dark-mode-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg);
}

body.dark-mode .dark-mode-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

body.dark-mode .dark-mode-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

body.dark-mode .dark-mode-toggle {
    border-color: var(--rolex-gold);
    color: var(--rolex-gold);
}

body.dark-mode .dark-mode-toggle:hover {
    background: var(--rolex-gold);
    color: var(--dark-bg);
}

/* Mobile Dark Mode Toggle */
.dark-mode-toggle-mobile {
    display: none; /* Hidden on desktop */
    width: 100%;
    background: transparent;
    border: 2px solid var(--rolex-green);
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    color: var(--rolex-green);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dark-mode-toggle-mobile svg {
    position: absolute;
    left: 16px;
    transition: all 0.3s ease;
}

.dark-mode-toggle-mobile .toggle-label {
    margin-left: 32px;
}

.dark-mode-toggle-mobile .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.dark-mode-toggle-mobile .moon-icon {
    opacity: 0;
    transform: rotate(90deg);
}

body.dark-mode .dark-mode-toggle-mobile .sun-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

body.dark-mode .dark-mode-toggle-mobile .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

body.dark-mode .dark-mode-toggle-mobile {
    border-color: var(--rolex-gold);
    color: var(--rolex-gold);
}

.dark-mode-toggle-mobile:hover {
    background: var(--warm-cream);
}

body.dark-mode .dark-mode-toggle-mobile:hover {
    background: rgba(212, 160, 23, 0.1);
}

.nav-item-toggle {
    display: none; /* Hidden on desktop */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--rolex-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero Header ===== */
.hero {
    margin-top: 64px;
    position: relative;
    height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--rolex-gold) 0%, var(--rolex-gold-light) 100%);
    color: var(--rolex-green-dark);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--rolex-gold);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.cta-button:hover {
    background: var(--white);
    color: var(--rolex-green);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section:nth-child(even) {
    background-color: var(--warm-cream);
}

.container {
    width: 100%;
}

.section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: var(--rolex-green);
    text-align: center;
    font-weight:800;
    letter-spacing:0.4px;
}

.intro-paragraph {
    font-size: 1.1em;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Home Section ===== */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.pluspunten {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 111, 77, 0.08);
    border-left: 4px solid var(--rolex-gold);
}

.pluspunten h3 {
    color: var(--rolex-green);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.pluspunten ul {
    list-style: none;
}

.pluspunten li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

/* ===== Training Steps ===== */
.training-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 111, 77, 0.06);
    transition: var(--transition);
    border-top: 3px solid var(--rolex-gold);
}

.step:hover {
    box-shadow: 0 8px 25px rgba(0, 111, 77, 0.12);
    transform: translateY(-5px);
    border-top-color: var(--rolex-green);
}

.step h3 {
    color: var(--rolex-green);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

.step ul {
    margin-top: 15px;
    margin-left: 20px;
    color: var(--text-light);
}

.step li {
    margin-bottom: 8px;
}

/* ===== Exam Content ===== */
.exam-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.exam-requirements,
.exam-process,
.exam-location {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 111, 77, 0.06);
    border-left: 4px solid var(--rolex-gold);
}

.exam-requirements h3,
.exam-process h3,
.exam-location h3 {
    color: var(--rolex-green);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.exam-requirements ul {
    list-style: none;
    margin-bottom: 15px;
}

.exam-requirements li {
    padding: 8px 0;
    color: var(--text-light);
}

.exam-process p,
.exam-location p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ===== Premium Pricing Cards - Rolex-Inspired ===== */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 32px auto 0;
  align-items: stretch;
}

.pricing-grid .package-card {
  flex: 1 1 calc(20% - 16px);
  min-width: 200px;
  max-width: 240px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #FBF9F6 100%);
  border: 1px solid rgba(0, 111, 77, 0.1);
  box-shadow: 0 8px 32px rgba(0, 111, 77, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 480px;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rolex-green) 0%, var(--rolex-gold) 50%, var(--rolex-green) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(0, 111, 77, 0.16);
  border-color: rgba(212, 160, 23, 0.3);
}

.package-card:hover::before {
  opacity: 1;
}

.card-header {
  padding: 24px 20px 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--rolex-green) 0%, var(--accent-green) 100%);
  position: relative;
  overflow: hidden;
}

.card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-card:hover .card-header::after {
  opacity: 1;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.card-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.package-meta {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 28px;
  position: relative;
}

.currency-box {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rolex-gold);
  text-shadow: 0 2px 4px rgba(212, 160, 23, 0.2);
}

.price-amount {
  background: linear-gradient(135deg, var(--rolex-gold) 0%, var(--rolex-gold-light) 100%);
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
  position: relative;
  overflow: hidden;
}

.price-amount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.package-card:hover .price-amount::before {
  left: 100%;
}

.price-amount strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--rolex-green-dark);
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.features-list li .feat-text {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.features-list li .check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: linear-gradient(135deg, var(--rolex-green) 0%, var(--accent-green) 100%);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 3px 12px rgba(0, 111, 77, 0.25);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / 60% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / 60% no-repeat;
}

/* Package notes - simplified */
.package-notes {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--white) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--rolex-gold);
  box-shadow: 0 4px 16px rgba(0, 111, 77, 0.06);
}

.package-notes p {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

/* Bottom pricing area */
.pricing-bottom {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  margin: 40px auto 0;
  max-width: 1120px;
}

.extra-package,
.individual-prices {
  background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 111, 77, 0.08);
  box-shadow: 0 6px 24px rgba(0, 111, 77, 0.08);
  transition: var(--transition);
}

.extra-package:hover,
.individual-prices:hover {
  box-shadow: 0 8px 32px rgba(0, 111, 77, 0.12);
  transform: translateY(-2px);
}

.extra-package {
  padding: 28px;
  text-align: center;
  border-top: 3px solid var(--rolex-gold);
}

.extra-package h3 {
  color: var(--rolex-green);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.extra-package .muted {
  color: var(--text-light);
  font-size: 0.9rem;
}

.extra-package .price {
  font-size: 1.8rem;
  color: var(--rolex-gold);
  font-weight: 800;
  margin-top: 12px;
}

.individual-prices {
  padding: 28px;
  border-left: 4px solid var(--rolex-green);
}

.individual-prices h3 {
  color: var(--rolex-green);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.individual-list {
  list-style: none;
  padding: 0;
}

.individual-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 500;
}

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

.individual-list .value {
  color: var(--rolex-gold);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .pricing-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .individual-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

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

  .individual-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  
  .package-card {
    min-height: auto;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .price-amount strong {
    font-size: 1.4rem;
  }
}

.disclaimer {
    font-size: 1em;
    color: var(--text-light);
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

.cta-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
}

.cta-text a {
    color: var(--rolex-green);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.cta-text a:hover {
    color: var(--rolex-gold);
    text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 111, 77, 0.1);
    border-top: 4px solid var(--rolex-gold);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--rolex-green);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rolex-green);
    box-shadow: 0 0 0 3px rgba(0, 111, 77, 0.1);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--rolex-green) 0%, var(--accent-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 111, 77, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 111, 77, 0.4);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== Footer ===== */
.footer {
	position: relative;
	background-image: url('../images/footer.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--white);
	padding: 60px 20px 30px;
	margin-top: 80px;
	min-height: 400px;
}

.footer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(15, 15, 15, 0.9) 100%);
	display: block;
	z-index: 1;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-column h3 {
	color: var(--rolex-gold);
	margin-bottom: 20px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.footer-column p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 10px;
	line-height: 1.6;
	font-size: 0.95rem;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
	font-size: 0.95rem;
}

.footer-column a:hover {
	color: var(--rolex-gold);
	text-decoration: underline;
}

/* Footer Contact Section */
.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-contacts .contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-icon,
.footer-contacts .contact-item img {
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
	object-fit: contain;
	display: inline-block;
	flex-shrink: 0;
}

.footer-contacts .contact-item .label,
.footer-contacts .contact-item a {
	color: var(--rolex-gold);
	text-transform: none;
	font-size: 0.95rem;
	font-weight: 600;
}

.footer-contacts .contact-item a {
	text-decoration: none;
}

.footer-contacts .contact-item a:hover {
	text-decoration: underline;
}

/* Footer Social Icons */
.footer-social {
	display: flex;
	gap: 12px;
	align-items: center;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: var(--transition);
	border: 1px solid rgba(212, 160, 23, 0.3);
}

.footer-social a:hover {
	background: var(--rolex-gold);
	border-color: var(--rolex-gold);
	transform: scale(1.1);
}

.footer-social .footer-social-icon,
.footer-social .footer-social0icon {
	width: 20px !important;
	height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
	object-fit: contain;
	display: block;
}

.footer-social a:hover img {
	filter: brightness(0) saturate(100%);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	position: relative;
	z-index: 2;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 8px 24px rgba(0, 111, 77, 0.2);
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        opacity: 0;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link {
        padding: 12px 8px;
        width: 100%;
        text-align: left;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .nav-link:hover {
        background-color: var(--warm-cream);
    }

    .navbar-social {
        display: none; /* Hide entire social section on mobile */
    }

    /* Show mobile dark mode toggle inside menu */
    .nav-item-toggle {
        display: block;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .dark-mode-toggle-mobile {
        display: flex;
    }

    /* Hide desktop dark mode toggle */
    .dark-mode-toggle-desktop {
        display: none;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .section {
        padding: 50px 20px;
    }

    .section h2 {
        font-size: 2em;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .training-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .pluspunten {
        padding: 24px;
    }
}

/* Mobile improvements */
@media (max-width: 600px) {
    .hero { height: 360px; }
    .cta-button { padding: 12px 24px; font-size: 1em; }
    .nav-link { padding: 12px 8px; display:block; }
    .nav-menu { gap: 12px; }
    .submit-button, .btn, .btn-primary { padding: 14px 16px; font-size: 1rem; }

    .section {
        padding: 40px 16px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .step,
    .exam-requirements,
    .exam-process,
    .exam-location {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 60px;
        padding: 0 16px;
    }

    .navbar-logo {
        font-size: 1em;
    }

    .navbar-logo img {
        height: 40px;
    }

    .hero {
        margin-top: 60px;
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .section {
        padding: 32px 12px;
    }

    .contact-form {
        padding: 20px 12px;
    }

    .step,
    .exam-requirements,
    .exam-process,
    .exam-location,
    .pluspunten {
        padding: 16px;
    }

    .package-card {
        padding: 0;
    }

    .card-body {
        padding: 24px 20px;
    }
}
