/* ===== CSS Variables ===== */
:root {
  --red: #db4e41;
  --red-dark: #c0392b;
  --green: #5cb85c;
  --green-dark: #4cae4c;
  --dark: #2c2c2c;
  --darker: #1a1a1a;
  --gray-light: #f5f5f5;
  --gray: #999;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ===== Header ===== */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--red);
  height: 35px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--red);
  line-height: 1.2;
}

/* Header Right (nav + buttons) */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.nav-menu > li > a:hover {
  color: var(--red);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 700px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  padding: 20px;
  display: none;
  z-index: 100;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.dropdown-menu.show,
li:hover > .dropdown-menu {
  display: grid;
}

.dropdown-item {
  padding: 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--gray-light);
}

.dropdown-item h4 {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 5px;
}

.dropdown-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

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

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  padding: 8px 20px;
  font-size: 13px;
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  padding: 14px 32px;
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-green-lg {
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  padding: 18px 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-green-lg:hover {
  background: var(--green-dark);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 5px;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1400') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-mockup {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.hero-mockup img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

/* ===== Feature Icons Section ===== */
.features-icons {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-icon-item {
  text-align: center;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 36px;
  transition: var(--transition);
}

.icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(219, 78, 65, 0.4);
}

.feature-icon-item h3 {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
}

/* ===== Section Styles ===== */
.section {
  padding: 60px 0;
}

.section-gray {
  background: var(--gray-light);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-red {
  background: var(--red);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid var(--dark);
}

.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

.cta-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 30px;
}

.products-section {
  padding: 60px 0;
  background: var(--gray-light);
}

/* ===== Product Cards ===== */
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card .icon-circle {
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
}

.product-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== About Page ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-content strong {
  color: var(--text);
}

/* ===== Page Header Banner ===== */
.page-header {
  background: linear-gradient(rgba(219, 78, 65, 0.9), rgba(219, 78, 65, 0.9)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1400') center/cover;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 600;
}

.page-header p {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* ===== VIP Page Sections ===== */
.vip-intro {
  padding: 50px 0;
}

.vip-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text);
}

.vip-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.vip-benefits {
  padding: 50px 0;
  background: var(--gray-light);
}

.vip-benefits h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text);
}

/* ===== VIP Services ===== */
.vip-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vip-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vip-card:hover {
  box-shadow: var(--shadow-lg);
}

.vip-card h3 {
  font-size: 20px;
  color: var(--red);
  margin-bottom: 10px;
}

.vip-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--red);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 14px;
  color: var(--red);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===== Forms ===== */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(219, 78, 65, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text);
}

.form-info p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.form-info .contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.form-info .contact-detail i {
  color: var(--red);
  width: 20px;
}

/* ===== Careers ===== */
.careers-content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-content h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: var(--text);
}

.careers-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.careers-content li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===== Blog Placeholder ===== */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
}

.blog-empty i {
  font-size: 60px;
  color: var(--gray);
  margin-bottom: 20px;
}

.blog-empty h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 10px;
}

.blog-empty p {
  color: var(--text-light);
}

/* ===== Pricing Placeholder ===== */
.pricing-placeholder {
  text-align: center;
  padding: 60px 20px;
}

.pricing-placeholder h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.pricing-placeholder p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TalentHub ===== */
.talent-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.talent-feature,
.talent-feature-item {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.talent-feature h3,
.talent-feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.talent-feature p,
.talent-feature-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.talent-feature-icon {
  font-size: 24px;
  color: var(--red);
  margin-bottom: 10px;
}

.talenthub-headline {
  padding: 40px 0;
}

.talenthub-headline h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: var(--text);
  line-height: 1.4;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.department-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.department-card h3 {
  font-size: 20px;
  color: var(--red);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.department-card li {
  list-style: none;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 20px;
  margin: 25px 0 10px;
  color: var(--text);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text-light);
}

.legal-content ul, .legal-content ol {
  padding-left: 25px;
  margin-bottom: 15px;
}

.legal-content li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 5px;
}

/* ===== Footer ===== */
footer {
  background: var(--gray-light);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 280px;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--red);
}

/* Footer Login */
.footer-login {
  background: var(--white);
  border-radius: 6px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.footer-login-tabs {
  display: flex;
  margin-bottom: 15px;
}

.footer-login-tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  background: var(--gray-light);
  color: var(--text);
}

.footer-login-tab.active {
  background: var(--red);
  color: var(--white);
}

.footer-login input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-login .login-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-login .login-row input {
  flex: 1;
  margin-bottom: 0;
}

.footer-login-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.footer-login-btn:hover {
  background: var(--red-dark);
}

/* Footer Bottom */
.footer-bottom {
  background: var(--white);
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--red);
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-mockup { display: none; }

  .features-grid,
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-section {
    grid-template-columns: 1fr;
  }

  .vip-services-grid,
  .talent-features {
    grid-template-columns: 1fr;
  }

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

  .dropdown-menu {
    min-width: 100%;
    grid-template-columns: 1fr;
    position: static;
    box-shadow: none;
    border: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .header-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    flex-direction: column;
  }

  .header-right.active { display: flex; }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu > li > a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .header-actions {
    flex-direction: column;
    padding-top: 15px;
  }

  .header-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero h1 { font-size: 28px; }

  .features-grid,
  .product-cards,
  .departments-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 { font-size: 28px; }

  .cta-section h3 { font-size: 28px; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Video Player ===== */
.video-section {
  background: var(--red);
  padding: 40px 0;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  transition: var(--transition);
}

.video-wrapper:hover .video-play-btn {
  background: rgba(0,0,0,0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card .quote {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Industries Tags ===== */
.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.industry-tag {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}

.industry-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ===== Benefits List ===== */
.benefits-list {
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.benefit-item .num {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===== Side Features ===== */
.side-features {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 8px;
}

.side-features h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text);
}

.side-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid #e0e0e0;
}

.side-features li:last-child {
  border-bottom: none;
}

.side-features li i {
  color: var(--green);
}

/* Utility */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
