:root {
  --blue: #0f2e5d;
  --blue-light: #1f4fa3;
  --gold: #d4a73c;
  --bg: #f5f7fb;
  --text: #1f2933;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  /* Offset for sticky header */
}

body {
  font-family: Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10
}

.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px;
  position: relative
}

.logo-box {
  background: var(--white);
  padding: 25px 40px 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 20
}

.nav img {
  height: 90px
}

.nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  font-weight: 600;
  color: var(--blue)
}

.nav ul li a {
  position: relative;
  padding-bottom: 5px
}

.nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s
}

.nav ul li a:hover::after {
  width: 100%
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px
}

/* ===== HERO ===== */
.hero {
  background: #000;
  color: #fff;
  max-width: 100%;
  padding: 0
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px
}

.hero p {
  opacity: .95
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px
}

.btn {
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block
}

.btn-primary {
  background: var(--gold);
  color: #000
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff
}

.hero-image {
  background: #ffffff22;
  border-radius: 14px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center
}

/* ===== SECTIONS ===== */
section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px
}

h2 {
  text-align: center;
  color: var(--blue);
  margin-bottom: 14px
}

.subtitle {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px
}

.card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
  transition: .3s;
  cursor: pointer
}

.card:hover {
  transform: translateY(-6px);
  background: var(--blue);
  color: var(--gold)
}

.card h3 {
  color: var(--blue);
  margin-bottom: 12px;
  transition: .3s
}

.card:hover h3 {
  color: var(--gold)
}

.card p {
  transition: .3s
}

.card:hover p {
  color: var(--gold)
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  stroke: var(--blue);
  transition: .3s
}

.card:hover .card-icon {
  stroke: var(--white)
}

/* ===== ACCORDION ===== */
#qualifications {
  background: var(--white);
  width: 100%;
  max-width: 100%;
  padding: 80px 20px
}

.accordion {
  max-width: 900px;
  margin: 50px auto 0
}

.acc-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06)
}

.acc-header {
  padding: 20px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between
}

.acc-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.acc-content p {
  padding: 18px 0
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center
}

.step {
  background: #fff;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06)
}

.step span {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 12px
}

/* ===== IMAGE SLIDER ===== */
.slider-wrap {
  background: var(--blue);
  padding: 60px 0;
  max-width: 100%;
  position: relative
}

.slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative
}

.slides {
  display: flex;
  transition: transform .6s ease
}

.slide {
  min-width: 25%;
  padding: 10px
}

.slide img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
  cursor: pointer
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s
}

.slider-btn:hover {
  background: #fff
}

.prev {
  left: 20px
}

.next {
  right: 20px
}

/* ===== PARTNER SECTION ===== */
.partner-content h2 {
  text-align: left
}

.partner-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .3fr .7fr;
  gap: 50px;
  align-items: center
}

.partner-list {
  list-style: none;
  margin-top: 20px
}

.partner-list li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
  font-weight: 500
}

.partner-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800
}

.partner-image {
  height: 100%;
  min-height: 300px;
  border-radius: 14px;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #eef2f6;
  /* Lighter version of bg or blue tint */
  padding: 80px 20px;
  text-align: center;
  max-width: 100%
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap
}

.cta-content {
  text-align: left;
  flex: 1;
  min-width: 300px
}

.cta-content h2 {
  text-align: left;
  margin-bottom: 10px
}

/* ===== DELIVERY LEVELS ===== */
.levels-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.levels-image {
  height: 100%;
  min-height: 350px;
  border-radius: 14px;
  overflow: hidden;
}

.levels-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.levels-content h2 {
  text-align: left
}

.levels-list {
  list-style: none;
  margin-top: 25px
}

.levels-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform .3s
}

.levels-list li:hover {
  transform: translateX(6px);
  background: var(--blue);
  color: #fff
}

.levels-list li:hover .level-icon {
  fill: var(--gold)
}

.level-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  fill: var(--gold)
}

/* ===== COLLABORATE SECTION ===== */
#collaborate {
  background: var(--blue);
  color: #fff;
  max-width: 100%;
  padding: 80px 20px;
}

#collaborate h2 {
  color: var(--gold);
}

#collaborate .subtitle {
  color: #ccc;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.collab-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: .3s;
}

.collab-box:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.collab-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 167, 60, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.collab-icon svg {
  width: 30px;
  height: 30px;
}

.collab-box h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}

/* Specific styles for Qualification page level boxes */
.levels-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.level-box {
  background: var(--blue);
  color: #fff;
  padding: 30px;
  border-radius: 14px;
  border-left: 6px solid var(--gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.level-box:hover {
  transform: translateX(10px);
}

.level-box h3 {
  color: var(--gold);
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.level-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.hero-page {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-banner.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  max-width: 100%;
}

.hero-inner-page h1 {
  font-size: 2.5rem;
  margin-bottom: 10px
}

.text-section {
  text-align: left;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px
}

.text-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.text-image {
  height: 100%;
  min-height: 250px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.text-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.text-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: auto
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px
}

.role-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px
}

.role-icon {
  width: 40px;
  height: 40px;
  stroke: var(--blue)
}

.card:hover .role-icon {
  stroke: var(--white)
}

.role-list {
  list-style: none;
  padding-left: 10px
}

.role-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  transition: .3s
}

.card:hover li {
  color: #fff
}

.role-list li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold
}

.structure-section {
  background: #f8fafc;
  padding: 60px 20px
}

.structure-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 40px auto 0
}

.flow-item {
  background: var(--white);
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: .3s
}

.flow-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px)
}

.flow-arrow {
  font-size: 24px;
  color: var(--gold);
  font-weight: bold
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #cbd5e1;
  padding: 60px 20px;
}

footer .inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-logo-section img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  /* Make logo white if needed, or keep original */
}

/* Redefining logo img style for footer specifically if needed */
.footer-logo-section img {
  filter: none;
  /* Keep original colors for logo-png.png */
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials a {
  background: #222;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  color: #fff;
}

.footer-socials a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  transition: 0.3s;
  display: block;
}

.footer-links-list a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-list svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list span {
  line-height: 1.4;
}

@media(max-width:900px) {
  footer .inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  footer h4 {
    display: block;
    width: max-content;
    margin: 0 auto 20px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact-list li {
    justify-content: center;
  }
}

@media(max-width:900px) {
  .nav {
    justify-content: space-between
  }

  .logo-box {
    background: transparent;
    box-shadow: none;
    padding: 0;
    position: static;
    border-radius: 0
  }

  .nav img {
    height: 50px
  }

  .hamburger {
    display: flex
  }

  .nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 15px;
    z-index: 15
  }

  .nav ul.active {
    display: flex
  }

  .hero-inner,
  .partner-inner,
  .levels-inner,
  .mission-grid,
  .text-inner {
    grid-template-columns: 1fr
  }

  .structure-flow {
    flex-direction: column
  }

  .flow-arrow {
    transform: rotate(90deg)
  }

  .slide {
    min-width: 50%
  }
}

@media(max-width:600px) {
  .slide {
    min-width: 100%
  }
}

/* ================= QUALIFICATION PAGE ================= */

/* Hero for sub-pages */
.hero-small {
  background: var(--blue);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
}

.hero-small .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.hero-small .hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Qualification Types Section */
.qual-section {
  padding: 80px 0;
  background-color: #fff;
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.qual-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.qual-card:hover {
  transform: translateY(-5px);
}

.qual-image {
  height: 400px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #666;
}

.qual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qual-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
}

.qual-text {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.qual-text h3 {
  color: var(--blue);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.qual-text p {
  line-height: 1.6;
  color: var(--text);
}

/* Highlighted Disclaimer Section */
.highlight-section {
  padding: 60px 0;
  background-color: #f4f6f8;
}

.highlight-box {
  background: #fff;
  border-left: 5px solid var(--gold);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.highlight-icon {
  flex-shrink: 0;
  color: var(--blue);
}

.highlight-icon svg {
  width: 50px;
  height: 50px;
}

.highlight-text h3 {
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.highlight-text p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Adjustments for Qual Page */
@media (max-width: 768px) {
  .qual-grid {
    grid-template-columns: 1fr;
  }

  .highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .highlight-icon {
    margin-bottom: 15px;
  }
}

/* ================= CENTRES PAGE ================= */

/* Reusing .text-section and .text-inner from About Page */
/* Additional utility for background */
.bg-light {
  background-color: #f8fafc;
}

.content-list {
  list-style: none;
  padding-left: 20px;
}

.content-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 10px;
  color: var(--text);
}

.content-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: -15px;
  top: -5px;
}

/* Steps Section */
.steps-section {
  padding: 80px 20px;
  text-align: center;
}

.container-steps {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-section h2 {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 50px;
}

.steps-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.step-card {
  flex: 1;
  min-width: 200px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(11, 31, 63, 0.3);
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 0;
}

/* Utility Classes */
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  /* For the reversed layout on Desktop (Image Left, Text Right) */
  /* On mobile, we want Text Top, Image Bottom */
  /* Since HTML structure is <Image> then <Text> (to satisfy desktop request),
       we need to swap them on mobile using Flexbox */

  .text-inner.reversed-layout {
    display: flex;
    flex-direction: column-reverse;
    /* Puts Image (1st in DOM) at bottom, Text (2nd) at top */
    gap: 20px;
  }
}

/* ===== NEW QUAL PAGE UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.overview-section h2,
.units-section h2,
.requirements-section h2 {
  text-align: left;
  margin-bottom: 25px;
}

.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.units-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.units-list li {
  padding: 8px 15px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: var(--blue);
  border-left: 3px solid var(--gold);
}

.units-image {
  background: #e2e8f0;
  border-radius: 14px;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.units-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-box-blue {
  background: var(--blue);
  color: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 46, 93, 0.2);
  line-height: 1.8;
  font-size: 1.1rem;
}

.req-list {
  list-style: none;
  margin: 20px 0;
}

.req-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.req-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

.note {
  margin-top: 30px;
  color: #666;
}

@media (max-width: 900px) {
  .units-grid {
    grid-template-columns: 1fr;
  }

  .units-image {
    min-height: 300px;
  }
}

/* ================= LIGHTBOX MODAL ================= */
.lightbox-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
  /* Show using flex to center */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #f1f1f1;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }

  .close-modal {
    top: 20px;
    right: 30px;
    font-size: 40px;
  }
}

/* ================= CONTACT PAGE ================= */
.contact-section {
  padding: 80px 20px;
  background: var(--white);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #f8fafc;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(31, 79, 163, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}

.contact-form .btn-primary:hover {
  opacity: 0.9;
}

.form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 25px;
  }
}