@font-face {
  font-family: 'GothamBold';
  src: url('../assets/fonts/GothamBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'GothamMedium';
  src: url('../assets/fonts/GothamMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'GothamLight';
  src: url('../assets/fonts/GothamLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

.iframe-container {
  max-width: 1200px;       
  margin: 40px auto;      
  padding: 20px;          
  background-color: #fff;  
  border-radius: 12px;    
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iframe-container > h2 {
  color: #002c6c;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  font-family: 'GothamMedium', Arial, sans-serif;
}

#formTicketFrame {
  width: 100%;
  height: 900px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background-color: white;
}

* {
  box-sizing: border-box;
}

:root {
  --primary-blue: #002c6c;
  --primary-blue-light: #004ba0;
  --accent-orange: #f57c00;
  --accent-orange-light: #ff9800;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'GothamMedium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}


#scrollUpBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  font-size: 24px;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
  color: white;
  cursor: pointer;
  padding: 16px 18px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
  transition: var(--transition-base);
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
}

#scrollUpBtn.show {
  display: flex;
}

#scrollUpBtn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 30px rgba(245, 124, 0, 0.5);
}

#scrollUpBtn:active {
  transform: translateY(-2px) scale(1.05);
}


.navbar {
    background: #f5f5f5;
    padding: 18px 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #f57c00;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

/* Navigation Menu */
.navbar-menu {
    flex: 1;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link:focus {
    color: #f57c00;
    background-color: rgba(245, 124, 0, 0.05);
    outline: 2px solid #f57c00;
    outline-offset: 2px;
}

.nav-link:active {
    color: #e66f00;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
}

.dropdown-arrow {
    display: inline-block;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    text-align: left;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #f57c00;
    background-color: rgba(245, 124, 0, 0.08);
}

.dropdown-menu li:first-child .dropdown-item {
    border-radius: 4px 4px 0 0;
}

.dropdown-menu li:last-child .dropdown-item {
    border-radius: 0 0 4px 4px;
}



.footer {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 40px 20px 20px;
  font-size: 13px;
  color: #333;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: bold;
  font-family: 'GothamBold', Arial, sans-serif;
  margin-bottom: 16px;
  color: var(--primary-blue);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-orange);
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li,
.footer-links li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: 'GothamMedium', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--accent-orange);
}

.footer-column a svg {
  margin-right: 10px;
  vertical-align: middle;
  fill: #555;
  transition: all 0.3s ease;
  width: 18px;
  height: 18px;
}

.footer-column a:hover svg {
  fill: var(--accent-orange);
}

.footer-column p {
  margin: 8px 0;
  color: #555;
  font-family: 'GothamMedium', Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem;
  color: #777;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-family: 'GothamLight', Arial, sans-serif;
}

.footer-copy p {
  margin: 4px 0;
  font-size: 0.8rem;
  color: #777;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .logo {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .navbar-menu {
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    margin: 0;
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    max-height: 500px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-column {
    font-size: 0.8rem;
  }
  .footer-copy {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    font-family: 'GothamLight', Arial, sans-serif;
  }
  .footer-copy p {
    margin: 4px 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar { 
    padding: 10px; 
    flex-direction: column;
  }

  .logo img { 
    height: 35px; 
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
  }

  #scrollUpBtn {
    bottom: 15px; right: 15px;
    width: 45px; height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .navbar { padding: 8px; }
  .logo img { height: 30px; }
}


@media print {
  #scrollUpBtn { display: none !important; }
  .navbar { box-shadow: none; border-bottom: 1px solid #000; }
}

#cards-container,
#info-section {
  scroll-margin-top: 110px; 
}

.new-image-container {
  width: 100%;
  max-width: 2600px;         
  margin: 0 auto 40px auto;  
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;   
  position: relative;
  overflow: hidden;
  min-height: 180px;         
  height: auto;
}

.new-image-container img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;       
  margin: 0 auto;
  background: transparent;
}


.auth-section, .environment-section, .contact-section {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.auth-section h3, .environment-section h3, .contact-section h3 {
  color: #002c6c;
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  font-family: 'GothamBold', Arial, sans-serif;
}

.auth-note {
  background: #fff3e0;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 4px solid #f57c00;
}

.auth-note code {
  background: #ffe0b2;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

.env-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.env-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #2196f3;
}

.env-card h4 {
  color: #002c6c;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.env-card code {
  display: block;
  background: white;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  word-break: break-all;
}

.contact-methods {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item a {
  color: #f57c00;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive Styles for API Sections */
@media (max-width: 768px) {
  .env-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .auth-section, .environment-section, .contact-section {
    padding: 15px;
  }
}

