/* ============================================
   Premier Services, LLC - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #1a365d;
  --primary-light: #2c5282;
  --secondary-color: #c9a227;
  --accent-color: #e53e3e;
  --dark-bg: #1a202c;
  --light-bg: #f7fafc;
  --white: #ffffff;
  --text-dark: #2d3748;
  --text-light: #a0aec0;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

p {
  text-align: justify;
  text-justify: inter-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0 5%;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 160px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 220px;
  width: auto;
}

.logo-text {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text span {
  color: #B81010;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 28px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link.active {
  color: var(--secondary-color);
}

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

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 8px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--secondary-color);
}

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

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 5px;
}

.lang-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--secondary-color);
  color: var(--dark-bg);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(26, 32, 44, 0.7) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  color: var(--white);
}

.hero-content p,
.page-header p,
.section-header p,
.value-card p {
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 800px;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--secondary-color);
  color: var(--dark-bg);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-btn:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Slide Text Container */
.slide-text {
  display: none;
  max-width: 900px;
}

.slide-text.active {
  display: block;
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.hero-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-nav-dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-line {
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 20px auto 0;
}

.pcg-logo-bg {
  position: relative;
  text-align: center;
  margin: 60px 0 80px 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: var(--white);
  border-radius: 15px;
}

.pcg-bg-logo {
  width: 280px;
  height: auto;
  opacity: 1;
  transition: all 0.4s ease;
}

.pcg-logo-bg:hover .pcg-bg-logo {
  transform: scale(1.08);
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--secondary-color);
  border-radius: 8px;
  z-index: -1;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 5px solid var(--secondary-color);
}

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

.mv-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h3 svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary-color);
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ============================================
   Core Values
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-color);
}

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

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  right: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

.service-card-header {
  background: var(--primary-color);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.service-card:hover .service-card-header {
  background: var(--secondary-color);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}

.service-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card-body {
  padding: 25px;
  max-height: 80px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover .service-card-body {
  max-height: 500px;
}

.service-card-body ul {
  list-style: none;
}

.service-card-body li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.service-card-body li:last-child {
  border-bottom: none;
}

.service-card-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.service-toggle {
  display: block;
  text-align: center;
  padding: 15px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--light-bg);
  transition: var(--transition);
}

.service-card:hover .service-toggle {
  background: var(--primary-color);
  color: var(--white);
}

/* ============================================
   Leadership Section
   ============================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.leader-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.leader-image {
  height: 300px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.leader-card:hover .leader-image img {
  transform: scale(1.1);
}

.leader-info {
  padding: 25px;
  text-align: center;
}

.leader-info h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.leader-role {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.leader-bio {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.leader-card:hover .leader-bio {
  max-height: 500px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   Projects Section
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0.8;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.project-overlay p {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* ============================================
   Work With Us / Careers
   ============================================ */
.careers-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.careers-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

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

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

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--primary-color);
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--secondary-color);
  color: var(--dark-bg);
}

/* Subtabs */
.subtabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.subtab-btn {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.subtab-btn.active,
.subtab-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.subtab-content {
  display: none;
}

.subtab-content.active {
  display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 80px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-about h3 span {
  color: #B81010;
}

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

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary-color);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary-color);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--secondary-color);
  }

  .dropdown-toggle::after {
    color: var(--white);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: var(--white);
    display: none;
    width: calc(100% - 20px);
    margin: 0 0 10px 20px;
    border-left: 4px solid var(--secondary-color);
    border-top: none;
    border-radius: 0 10px 10px 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu a {
    color: var(--text-dark);
    border-color: var(--border-color);
  }

  .dropdown-menu a.active {
    color: var(--primary-color);
  }

  .dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
  }

  .hamburger {
    display: flex;
  }

  .lang-toggle {
    margin: 15px 20px;
  }

  .about-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .about-image::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 60px 5%;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .subtabs {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 70px;
  }

  .nav-menu {
    top: 70px;
  }

  .nav-menu.active {
    max-height: calc(100vh - 70px);
  }

  .logo img {
    height: 5rem;
    width: auto;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 0.9rem;
  }

  .value-card,
  .service-card,
  .leader-card {
    padding: 20px;
  }
}
