/* Import Gotham Font - You'll need to add @font-face rules with your actual font files */
/* Example:
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  color: #000000;
  line-height: 1.6;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- HEADER STYLING ----- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 5px 0 15px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  margin-right: 0;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #264290;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #fff;
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #fff;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
  padding: 8px 0;
}

.main-nav a:hover {
  color: #264290;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle .arrow {
  font-size: 0.8em;
  transition: transform 0.3s;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: #333;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #264290;
}

.mobile-buttons {
  display: none;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-demo {
  background: #264290;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
  display: inline-block;
}

.btn-demo:hover {
  background: #1a2f6b;
}

.mobile {
  display: none;
}

.desktop {
  display: inline-block;
}

/* Prevent body scroll when menu is open */
body.nav-open {
  overflow: hidden;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000000;
}

.hero-text h1 .blue-text {
  color: #264290;
}

.hero-text .subheader {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* Schedule Demo Link Button */
.btn-expand-demo-link {
  background: #264290;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.btn-expand-demo-link:hover {
  background: #1a2f6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 66, 144, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* TRUSTED BY SECTION - HIDDEN */
.trusted-section {
  display: none;
}

/* FEATURES SECTION */
.features-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #264290;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subheader {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Horizontal Tab Layout */
.features-tabs-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.features-grid {
  display: flex;
  border-bottom: 3px solid #e5e5e5;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.features-grid::-webkit-scrollbar {
  height: 4px;
}

.features-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.features-grid::-webkit-scrollbar-thumb {
  background: #264290;
  border-radius: 2px;
}

.feature-card {
  flex: 1;
  min-width: 180px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  background: #ffffff;
  white-space: nowrap;
}

.feature-card:hover {
  background: #f8f9fa;
  border-bottom-color: #00b0ef;
}

.feature-card.active {
  border-bottom-color: #264290;
  background: #f0f7ff;
}

.feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: 600;
  color: #333;
  white-space: normal;
  line-height: 1.3;
}

.feature-card.active h3 {
  color: #264290;
}

/* Feature Details - Always visible, no animation */
.feature-details {
  background: #ffffff;
}

.feature-detail {
  display: none;
  padding: 50px 40px;
}

.feature-detail.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Large Icon Display */
.detail-icon-large {
  font-size: 12rem;
  text-align: center;
  line-height: 1;
}

.detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  object-fit: contain;
}

.detail-text h3 {
  font-size: 1.8rem;
  color: #264290;
  margin-bottom: 20px;
}

.detail-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* L2 DATA SECTION */
.l2-data-section {
  padding: 80px 0;
  background: #ffffff;
}

.l2-data-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #264290;
}

.l2-visual {
  margin-top: 50px;
  text-align: center;
}

.l2-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* SUPPORT SECTION */
.support-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #264290 0%, #1a2f6b 100%);
  color: #ffffff;
  text-align: center;
}

.support-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.support-section > p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.support-item {
  text-align: center;
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.support-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.support-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* VOTECAST2GO SECTION */
.product-highlight {
  padding: 80px 0;
  background: #ffffff;
}

.section-title-centered {
  text-align: center;
  font-size: 2.5rem;
  color: #264290;
  margin-bottom: 20px;
}

.v2go-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.screenshot-item img:hover {
  transform: scale(1.05);
}

.v2go-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.v2go-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

/* PRICING SECTION */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #264290;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.pricing-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e5e5e5;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #264290;
  box-shadow: 0 8px 24px rgba(38, 66, 144, 0.2);
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #00b0ef;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #264290;
}

.pricing-card .price {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
  min-height: 180px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li:before {
  content: "✓ ";
  color: #00b0ef;
  font-weight: bold;
  margin-right: 8px;
}

/* Primary Button */
.btn-primary {
  display: inline-block;
  background: #264290;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-primary:hover {
  background: #1a2f6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 66, 144, 0.3);
}

/* FOOTER */
.site-footer {
  background-color: #fffaf4;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .v2go-screenshots {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 968px) {
  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  .header-buttons .desktop {
    display: none;
  }

  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }

  .mobile-buttons .btn-demo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #264290;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .main-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a {
    color: #ffffff;
    padding: 15px 0;
    font-size: 1.1rem;
  }

  .main-nav a:hover {
    color: #00b0ef;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    min-width: 220px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 300px;
    padding: 10px 0;
  }

  .dropdown-menu a {
    padding: 10px 0 10px 20px;
    font-size: 1rem;
  }

  .hero-content,
  .detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .features-grid {
    overflow-x: auto;
  }

  .feature-card {
    min-width: 150px;
    padding: 15px 10px;
  }

  .feature-card h3 {
    font-size: 0.85rem;
  }

  .feature-detail {
    padding: 30px 20px;
  }

  .detail-icon-large {
    font-size: 8rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .v2go-screenshots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .features-section h2,
  .l2-data-section h2,
  .support-section h2,
  .pricing-section h2,
  .section-title-centered {
    font-size: 1.8rem;
  }

  .support-features {
    grid-template-columns: 1fr;
  }

  .v2go-screenshots {
    grid-template-columns: 1fr;
  }

  .detail-icon-large {
    font-size: 6rem;
  }

  .pricing-card ul {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 50px 0;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .l2-visual img {
    height: 300px;
    object-fit: cover;
  }

  .detail-icon-large {
    font-size: 4rem;
  }
}