/* 4-weeks.css - Specialized styles for the Internship Page */

/* Hero Overrides */
.pt-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    gap: 50px;
}

.pt-hero-text {
    position: relative;
    flex: 1;
}

.hero-title {
    font-size: 3.5rem !important;
    line-height: 1.1;
}

/* Intro Section */
.va-intro {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 60px 0;
}

.va-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.va-left, .va-right {
    flex: 1;
}

.glass-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Grid Layouts (from standard style.css but repurposed) */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Progress Step Numbers */
.step-num {
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Tools Marquee (Same as other pages but with FA icons) */
.tools-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.tools-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollTools 30s linear infinite;
}

@keyframes scrollTools {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 180px;
  height: 140px;
  flex-shrink: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tool-item:hover {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.tool-item i {
  font-size: 2.5rem;
  color: #ff0000;
}

.tool-item span {
  font-size: 0.9rem;
  color: #ccc;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-header:hover {
    background: rgba(255, 0, 0, 0.05);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-content p {
    padding: 0 25px 20px;
    color: #aaa;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(255, 0, 0, 0.4);
    background: rgba(255, 0, 0, 0.02);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
    color: #ff0000;
}

/* Responsive */
@media (max-width: 968px) {
    .pt-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .pt-hero-text {
        padding-right: 0;
        position: relative;
    }
    .va-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Buy Dropdown & Domain Styles */
.hero-left {
  position: relative;
}

.buy-dropdown {
  position: relative;
  width: 320px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.1);
  display: none;
  z-index: 2000;
  margin-top: 15px;
  overflow: hidden;
  animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.buy-option {
  padding: 18px 25px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.buy-option:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #fff;
  padding-left: 30px;
}

.buy-option:last-child {
  border-bottom: none;
}

/* Nav Item Buy Trigger Override */
.nav-buy-container {
  position: relative;
}

.nav-buy-container .buy-dropdown {
  right: 0;
  left: auto;
}
