* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Color */
  --primary: #2872af;
  --primary-dark: #1f5080;
  --primary-light: #3a8fd4;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Accents */
  --accent-green: #10b981;
  --accent-red: #ef4444;

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-700);
  background-color: var(--gray-50);
  line-height: 1.6;
}

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

/* NAVIGATION */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 1.8rem;
}
.logo-image {
  height: 100px;
}
.logo-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-image {
  animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* BUTTONS */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 114, 175, 0.3);
}

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

.btn-secondary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* INFO CARDS SECTION */
.info-section {
  padding: 60px 0;
  background: var(--white);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  text-align: center;
  transition: var(--transition);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.info-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* WHY LEAD SECTION */
.why-lead {
  padding: 80px 0;
  background: var(--gray-50);
}

.why-lead h2,
.section-intro {
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.why-lead h2 {
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.metals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 3rem;
}

.metal-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.metal-item:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

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

@keyframes fadeInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

.slide-in {
  animation: slideInUp 0.6s ease-out both;
}

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

.lead-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* SERVICES SECTION */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

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

.service-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(40, 114, 175, 0.3);
}

.service-number {
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* TWO COLUMN SECTION */
.two-column {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.column-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.column-text h2 {
  font-size: 2.2rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.column-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.column-text .btn {
  margin-top: 1rem;
}

.image-fade-in {
  animation: fadeInRight 0.8s ease;
}

/* RESIDENTIAL SECTION */
.residential {
  padding: 80px 0;
  background: var(--white);
}

.residential h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.residential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 3rem;
}

.residential-item {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border-top: 3px solid var(--primary);
}

.residential-item:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.item-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.residential-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.residential-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* INDUSTRIAL SECTION */
.industrial {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.industrial-text h2 {
  font-size: 2.2rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.industrial-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industrial-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2rem;
}

.industrial-service {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-600);
}

.checkmark {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.industrial-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* LOCATION SECTION */
.location {
  padding: 80px 0;
  background: var(--white);
}

.location h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-details {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.location-details:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.location-details h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.location-details p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

/* WHY CHOOSE SECTION */
.why-choose {
  padding: 80px 0;
  background: var(--gray-50);
}

.why-choose h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

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

.reason-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
  border-top: 4px solid var(--primary);
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.reason-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* CTA SECTION */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

/* ABOUT PAGE */
.about-story {
  padding: 80px 0;
  background: var(--white);
}

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

.story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-text h2 {
  font-size: 2.2rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.story-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* MISSION SECTION */
.mission-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.mission-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

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

.pillar {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

/* SETS APART SECTION */
.sets-apart {
  padding: 80px 0;
  background: var(--white);
}

.sets-apart h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.apart-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.apart-feature {
  padding: 25px;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.apart-feature:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.apart-feature h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.apart-feature p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* COMMITMENT SECTION */
.commitment {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.commitment-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* CONTACT FORM */
.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(40, 114, 175, 0.1);
}

.form-message {
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  display: block;
}

/* CONTACT INFO */
.contact-info-wrapper h2 {
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.contact-info-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  text-decoration: underline;
}

/* PAGE VISIBILITY */
.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 60px 0 20px;
}
.footer-logo-image {
  width: 250px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-100);
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .why-lead h2,
  .services h2,
  .residential h2,
  .location h2,
  .why-choose h2,
  .sets-apart h2,
  .mission-section h2 {
    font-size: 2rem;
  }

  .two-column-content,
  .industrial-content,
  .story-content,
  .location-grid,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
 .logo-image {
    width: 300px;
    height: 60px;
  }
  .cta-buttons {
    flex-direction: column;
  }

  .metals-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

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

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

  .hero-description {
    font-size: 0.95rem;
  }

  .section-intro {
    font-size: 1rem;
  }

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

  .services-grid,
  .residential-grid,
  .mission-pillars {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px;
  }

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

  .metal-item {
    padding: 15px;
    font-size: 0.9rem;
  }

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

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}
