/* ACP Header Styles */
.acp-header {
  background-color: white;
  padding: 10px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e7e7e7;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  position: relative;
}

.signin-container {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.signin-container .btn-primary {
  background-color: white;
  border: 1px solid #333;
  color: #333;
  padding: 6px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 14px;
}

.signin-container .btn-primary:hover {
  background-color: #f8f8f8;
  color: #333;
  border-color: #333;
}

.acp-header .logo {
  display: inline-block;
  padding: 0;
}

.acp-header .acp-logo {
  height: 45px;
  width: auto;
}

/* Main Navigation Styles */
.navbar.navbar-fixed-top {
  top: 57px;
  background-color: #fff;
  border-bottom: 1px solid #e7e7e7;
  z-index: 1035;
}

.navbar-inverse {
  background-color: #fff !important;
  border-color: #e7e7e7;
}

.navbar-inverse .navbar-nav > li > a {
  color: #333 !important;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 20px;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #077FCC !important;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #077FCC !important;
  background-color: transparent;
  border-bottom: 2px solid #077FCC;
}

.navbar-brand {
  padding: 15px 0;
  height: auto;
  color: #333 !important;
  font-weight: bold;
}

/* Adjust main content to account for fixed headers */
#main-content {
  margin-top: 0;
  padding-top: 0;
}

/* Mobile App Section */
.mobile-app-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-top: 40px;
}

.mobile-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.mobile-app-info {
  flex: 0 0 45%;
  padding-right: 40px;
}

.app-logo {
  width: 50px;
  height: auto;
  margin-bottom: 25px;
}

.mobile-app-info h2 {
  font-size: 28px;
  color: #002D5A;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.mobile-app-info p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 400;
}

.app-store-buttons {
  display: flex;
  gap: 15px;
}

.store-button img {
  height: 35px;
  width: auto;
  transition: transform 0.3s ease;
}

.store-button:hover img {
  transform: translateY(-2px);
}

.mobile-app-image {
  flex: 0 0 50%;
  text-align: right;
}

.app-preview {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  background-color: #0072CE;
  display: flex;
  align-items: center;
  padding: 120px 0;
  margin-top: 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: #ffffff;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  text-align: left;
}

.hero-section .hero-description {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.4;
  max-width: 600px;
  text-align: left;
  margin: 0;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  margin-top: 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #ffffff;
}

.feature-item i {
  font-size: 28px;
  color: #ffffff;
  opacity: 0.9;
  width: 40px;
  text-align: center;
}

.feature-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section .hero-description {
    font-size: 1.2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Main Footer */
.main-footer {
  background-color: #092337;
  padding: 60px 0 30px;
  color: #ffffff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  font-family: Arial, sans-serif;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links img {
  height: 40px;
  width: auto;
  margin-right: 30px;
}

.social-link {
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.8;
  color: #ffffff;
}

.copyright {
  font-size: 14px;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-links img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .acp-header .acp-logo {
    height: 30px;
  }

  .navbar.navbar-fixed-top {
    top: 52px;
  }

  #main-content {
    margin-top: 0;
  }

  .navbar-inverse .navbar-toggle {
    border-color: #333;
  }

  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #333;
  }

  .navbar-inverse .navbar-toggle:hover,
  .navbar-inverse .navbar-toggle:focus {
    background-color: #f8f8f8;
  }

  .navbar-inverse .navbar-collapse {
    border-color: #e7e7e7;
  }
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    color: #333;
}

/* Jumbotron Header Styles */
.jumbotron.page-header {
  position: relative;
  background-image: url('../images/bg_dev_portal_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: unset;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  margin-top: 115px;
  border: none;
  background-color: transparent;
  border-radius: 0;
  min-height: unset !important;
}

.jumbotron.page-header .container {
  position: relative;
  z-index: 2;
  background-color: transparent;
  padding: 60px 15px;
}

.jumbotron.page-header h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.jumbotron.page-header .hero-description {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 1;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .jumbotron.page-header {
    height: 300px;
    margin-top: 100px;
  }

  .jumbotron.page-header .container {
    padding: 30px 15px;
  }

  .jumbotron.page-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .jumbotron.page-header .hero-description {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #main-content {
    margin-top: 0;
  }
} 