@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: whitesmoke;
}

body {
  line-height: 1.6;
  background-color: #222533;
}

a {
  color: #ffcc33;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: whitesmoke;
}

/* NAVBAR */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #222533;
}
#navbar .logo h2 {
  margin: 0;
}
#navbar .nav a {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
#navbar .nav a:hover {
  background-color: rgba(255, 204, 51, 0.1);
}

/* BUTTONS - UNIFIED STYLE */
button, .btn {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #ffcc33 0%, #e6b82e 100%);
  border: none;
  border-radius: 25px;
  color: #222533;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
  font-family: "Inter", sans-serif;
}

button:hover, .btn:hover {
  background: linear-gradient(135deg, #e6b82e 0%, #ffcc33 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 51, 0.4);
}

button:focus, .btn:focus {
  outline: 2px solid #ffcc33;
  outline-offset: 2px;
}

/* BUTTON VARIANTS */
.btn-primary {
  background: linear-gradient(135deg, #ffcc33 0%, #e6b82e 100%);
  color: #222533;
  box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e6b82e 0%, #ffcc33 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 51, 0.4);
}

.btn-primary i {
  color: #222533 !important;
}

.btn-secondary {
  background: linear-gradient(135deg, #6c7293 0%, #5a6085 100%);
  color: whitesmoke;
  box-shadow: 0 5px 15px rgba(108, 114, 147, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6085 0%, #6c7293 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 114, 147, 0.4);
  color: whitesmoke;
}

.btn-secondary i {
  color: whitesmoke !important;
}

/* CONTENT */
.content {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
}
.intro h1 {
  font-size: 32px;
  margin-bottom: 0.5rem;
}
.intro p {
  margin-bottom: 0.5rem;
}
.intro ul {
  margin-top: 0rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
  text-align: center;
  display: inline-block;
  max-width: 700px;
  list-style-position: inside;
}
.intro li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.course-section {
  margin-bottom: 3rem;
}
.course-section h2 {
  font-size: 28px;
  border-bottom: 2px solid #ffcc33;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.course {
  background-color: #2e3245;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
}
.course * {
  background-color: transparent;
}
.course h3 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.course ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}
.course li {
  margin-bottom: 0.3rem;
}
.course p {
  margin: 0.5rem 0;
}

/* BACK LINK */
.back-link {
  text-align: center;
  margin-top: 2rem;
}

/* CONTACT INFO - LEGACY SUPPORT */
.contact-info {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}
.contact-info h3 {
  margin-bottom: 1.5rem;
}
.contact-info p {
  margin-bottom: 0.7rem;
}

/* CONTACT PAGE STYLES */
.contact-icon {
  color: #ffcc33;
  margin-right: 0.5rem;
  font-size: 1.2em;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(135deg, #2e3245 0%, #3a4258 100%);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 204, 51, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 204, 51, 0.3);
}

.company-icon {
  font-size: 2rem;
  color: #ffcc33;
  margin-right: 1rem;
}

.contact-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffcc33;
}

.contact-person {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background-color: rgba(255, 204, 51, 0.1);
  border-radius: 8px;
}

.contact-person i {
  font-size: 1.2rem;
  color: #ffcc33;
  margin-right: 0.8rem;
}

.contact-person span {
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-item:hover {
  background-color: rgba(255, 204, 51, 0.05);
}

.contact-item i {
  font-size: 1.2rem;
  color: #ffcc33;
  margin-right: 1rem;
  margin-top: 0.2rem;
  min-width: 1.5rem;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text p {
  margin: 0.2rem 0;
}

.contact-link {
  color: #ffcc33;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: whitesmoke;
  text-decoration: underline;
}

/* EXTRA INFO BOXES */
.contact-info-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-box {
  background: linear-gradient(135deg, #3a4258 0%, #2e3245 100%);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 204, 51, 0.2);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
}

.info-box i {
  font-size: 2rem;
  color: #ffcc33;
  margin-bottom: 1rem;
  display: block;
}

.info-box h4 {
  color: #ffcc33;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.info-box p {
  margin: 0;
  line-height: 1.5;
}

/* HOMEPAGE STYLES */
.services-section {
  margin: 3rem 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ffcc33;
  padding-bottom: 0.5rem;
  display: inline-block;
  width: 100%;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #2e3245 0%, #3a4258 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 204, 51, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 3rem;
  color: #ffcc33;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #ffcc33;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  line-height: 1.6;
  color: #e2e8f0;
}

.cta-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, #2e3245 0%, #3a4258 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
  color: #ffcc33;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #e2e8f0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* BENEFITS SECTION */
.benefits-section {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #2e3245 0%, #3a4258 100%);
  border-radius: 15px;
  border: 1px solid #444;
}

.benefits-section h2 {
  text-align: center;
  color: #ffcc33;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: rgba(255, 204, 51, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 51, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 204, 51, 0.1);
  transform: translateY(-2px);
}

.benefit-item h4 {
  color: #ffcc33;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-item h4 i {
  font-size: 1.2rem;
  color: #ffcc33;
}

.benefit-item p {
  color: #e2e8f0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  #navbar {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  #navbar .logo {
    margin-bottom: 1rem;
  }
  
  #navbar .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  #navbar .nav a {
    margin-right: 0;
    padding: 0.7rem 1rem;
  }
  
  .content {
    padding: 0 1rem;
  }
  
  .course-section {
    padding: 0 0.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .company-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .contact-info-extra {
    grid-template-columns: 1fr;
    margin: 0 0.5rem;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons button {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
  
  .benefits-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .contact-card {
    margin: 0 0.25rem;
    padding: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .banner h1 {
    font-size: 28px;
  }
  
  .banner p {
    font-size: 16px;
  }
}

/* TEXT SELECTION */
::selection {
  background-color: #ffcc33;
  color: #222533;
}

::-moz-selection {
  background-color: #ffcc33;
  color: #222533;
}

/* FOOTER */
.footer {
  background-color: #191b2a;
  padding: 2rem 1rem;
  margin-top: 4rem;
  border-top: 2px solid #333;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-section {
  text-align: center;
}

.footer-section p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0.25rem 0;
}

.footer-section a {
  color: #ffcc33;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: whitesmoke;
}

.footer-section strong {
  color: whitesmoke;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}