/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: transparent;
  background-size: contain;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.logo {
  margin-right: auto;
}

.logo img {
  height: 45px;
  width: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e74c3c;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/services_hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 200px 40px 120px;
  position: relative;
  margin-top: 0;
  height: 70vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #f8f7f5;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-primary {
  background-color: #e74c3c;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #c0392b;
}

.btn-secondary {
  background-color: transparent;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  color: #e74c3c;
}

.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-images img:first-child {
  grid-column: 1;
  grid-row: 1;
}

.about-images img:last-child {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-images {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img:last-child {
    grid-column: 1;
    grid-row: 2;
  }
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: #f8f7f5;
}

.process-header {
  margin-bottom: 60px;
  max-width: 800px;
}

.process-header h2 {
  color: #e74c3c;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.process-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step-left,
.process-step-right {
  display: flex;
  margin-bottom: 30px;
}

.process-step-left {
  justify-content: flex-start;
}

.process-step-right {
  justify-content: flex-end;
}

.process-text {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 550px;
  position: relative;
}

.process-number {
  color: #e74c3c;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
}

.process-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.process-text p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-step-left,
  .process-step-right {
    justify-content: center;
  }

  .process-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .process-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .process-text {
    padding: 30px;
  }

  .process-number {
    font-size: 3rem;
  }
}

/* Services Section - Updated */
.services-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  background-image: url("../images/index_about.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

.services-section p {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: rgba(51, 51, 51, 0.8);
  padding: 30px;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: rgba(231, 76, 60, 0.8);
}

.service-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
}

/* Responsive adjustments for services grid */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section h2 {
    font-size: 2rem;
  }
}

.services-section p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Our Work Section - Updated */
.work-section {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-item {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.work-item:hover {
  transform: translateY(-10px);
}

.work-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.work-item h3 {
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: left;
  margin-bottom: 0;
}

.view-more-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-decoration: none;
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.arrow-circle:hover {
  background-color: #e74c3c;
  color: #fff;
}

@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-section h2 {
  color: #e74c3c;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

.work-section p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-item {
  text-align: center;
  transition: transform 0.3s ease;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-item:hover {
  transform: translateY(-10px);
}

.work-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.work-item h3 {
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Call to Action Section */
.cta-section {
  background-image: url("../images/index_cta.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content .cta-button {
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #c0392b;
  color: #eee;
}

.cta-button:hover {
  background-color: #eee;
  color: #000;
}

/* Footer - Updated */
footer {
  background-color: #f9f9f9;
  padding: 40px 0 20px;
  border-top: 1px solid #eee;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #e74c3c;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-item a:hover {
  background-color: #e74c3c;
}

.contact-item a i {
  font-size: 18px;
  color: #333;
}

.contact-item a:hover i {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: #777;
}

.footer-info p,
.footer-credit p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #e74c3c;
}

.footer-social a i {
  font-size: 15px;
  color: #333;
}

.footer-social a:hover i {
  color: #fff;
}

.footer-credit a {
  color: #e74c3c;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container,
  .process-steps {
    flex-direction: column;
  }

  .service-item {
    flex: 1 0 calc(50% - 30px);
  }

  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .about-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item {
    flex: 1 0 100%;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .scrolled {
    height: 80px;
  }

  .logo {
    margin-top: 10px;
  }

  .burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1001;
    cursor: pointer;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 1000;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
    padding-left: 40px;
    text-align: left;
    margin: 15px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    width: 100%;
    color: #fff;
    font-size: 18px;
  }

  /* Active states */
  .nav-links.active {
    transform: translateX(0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active .line2 {
    opacity: 0;
  }

  .burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active + .menu-overlay {
    opacity: 1;
    visibility: visible;
  }
}
