body {
  font-family: 'Barlow', sans-serif;
  margin: 0;
  background: #fff;
}



.top-bar {
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 16px;
  padding: 8px 0;
}

.top-bar-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}


.top-bar > .top-bar-container > .top-bar-left {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px 0 0;
  margin-right: auto;
}

.top-bar > .top-bar-container > .top-bar-right {
  display: flex;
  align-items: center;
  max-width: 1440px;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0 24px;
  margin-left: auto;
}

.top-bar-left span,
.top-bar-right span {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.top-bar-left .material-icons,
.top-bar-right .material-icons {
  color: #ff0000;
  font-size: 20px;
  margin-right: 4px;
}

.top-bar-right {
  gap: 8px;
}

.navbar {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 16px 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo img {
  height: 80px;
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  margin-left: auto;
}

.navbar-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links li a:hover, .navbar-links li a.active, .mobile-nav-links .active {
  color: #ff0000;
}

.contact-btn {
  background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 32px;
  transition: background 0.2s;
}
.contact-btn-mobile {
  background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 10px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.contact-btn-mobile .material-icons {
  font-size: 24px;
  margin-top: 6px;
  margin-left: 8px;
}


.contact-btn .material-icons {
  margin-left: 8px;
  font-size: 24px;
}

.contact-btn:hover {
  background: #d60000;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  background: url('./assets/hero-bg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-btn {
  background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-btn .material-icons {
  font-size: 22px;
}

.hero-btn:hover {
  background: #d60000;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .container,
  .navbar-container,
  .top-bar-container {
    padding: 0 12px;
  }
  .hero {
    min-height: 500px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-content {
    max-width: 95vw;
  }
  .navbar-links {
    gap: 20px;
    font-size: 16px;
  }
  .contact-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .top-bar {
    display: none !important;
  }
  .navbar-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 8px 12px;
  }
  .navbar-logo {
    margin-bottom: 0;
  }
  .hamburger {
    margin-left: 0;
    margin-right: 0;
    align-self: center;
  }
  .about-image {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container,
  .navbar-container,
  .top-bar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 6px;
  }
  .top-bar-left, .top-bar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0;
    margin: 0;
  }
  .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px;
  }
  .navbar-logo {
    margin-bottom: 0;
  }
  .navbar-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .contact-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    font-size: 15px;
    padding: 10px 0;
  }
  .hero {
    min-height: 340px;
    padding: 40px 0 30px 0;
  }
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .hero-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

/* --- Mobile Hamburger and Menu Styles (from example/styles.css) --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: #ff0000;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(3px) translateX(4px) rotate(135deg);
  height: 4px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-3px) translateX(4px) rotate(-135deg);
  height: 4px;
}
.mobile-menu {
  display: none;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.mobile-nav-links a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links a:hover {
  color: #ff0000;
}
.mobile-nav-links .contact-btn {
  background: #ff0000;
  color: #fff;
  padding: 12px 36px;
  border-radius: 32px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .navbar-links,
  .contact-btn {
    display: none !important;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.98);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
}

.mobile-top-bar {
  width: 100%;
  margin-top: 32px;
  padding: 48px 0 0 0;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.mobile-top-bar-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.mobile-top-bar-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-top-bar-contact .material-icons {
  color: #ff0000;
  font-size: 20px;
  margin-right: 4px;
  vertical-align: middle;
}
.mobile-top-bar-contact span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mobile-top-bar-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (min-width: 1025px) {
  .mobile-top-bar {
    display: none !important;
  }
}


/* Why Us Section */
.whyus-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.whyus-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.whyus-heading h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 0 0;
  line-height: 1.1;
}
.whyus-content {
  max-width: 600px;
  color: #444;
  font-size: 1.08rem;
  line-height: 1.5;
}
.whyus-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.whyus-btn .material-icons {
  font-size: 22px;
}
.whyus-btn:hover {
  background: #d60000;
}
.whyus-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.whyus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.whyus-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 16px;
}
.whyus-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 8px 24px;
}
.whyus-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: #222;
  margin: 0 24px 0 24px;
}
@media (max-width: 1024px) {
  .whyus-section {
    padding: 48px 32px 0 32px;
  }
  .whyus-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .whyus-heading h2 {
    font-size: 2.2rem;
  }
  .whyus-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .whyus-card img {
    height: 140px;
  }
}
@media (max-width: 600px) {
  .whyus-section {
    padding: 32px 32px 32px 32px;
  }
  .whyus-top {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .whyus-heading h2 {
    font-size: 1.5rem;
  }
  .whyus-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .whyus-card img {
    height: 180px;
  }
  .whyus-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px 12px;
  }
  .whyus-card p {
    font-size: 0.98rem;
    margin: 0 12px 0 12px;
  }
}

/* About Section */
.about-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.about-content {
  flex: 1 1 0;
  width: 50%;
}
.about-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 32px 0;
  line-height: 1.1;
}
.about-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 32px;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.about-btn .material-icons {
  font-size: 22px;
}
.about-btn:hover {
  background: #d60000;
}
.about-image {
  flex: 1 1 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 100%;
  /* max-width: 540px; */
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
@media (max-width: 1024px) {
  .about-section {
    padding: 48px 32px 0 32px;
  }
  .about-container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .about-content {
    width: 100%;
  }
  .about-content h2 {
    font-size: 2.2rem;
  }
  .about-image img {
    max-width: 100%;
    height: auto;
  }
  .about-image {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 32px 32px 32px 32px;
  }
  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .about-content p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .about-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .about-image img {
    border-radius: 10px;
  }
}

/* Services Section */
.services-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.services-container {
  width: 100%;
}
.services-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 80px 0;
}
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  
  justify-content: space-between;
  margin-bottom: 40px;
  background: none;
}
.services-tab {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  outline: none;
  padding: 10px 18px;
  border-radius: 24px;
  margin-right: 8px;
  margin-bottom: 8px;
  color: #222;
  background: #f2f2f2;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.services-tab.active {
  background: #222;
  color: #fff;
}
.services-tabs-content {
  width: 100%;
}
.services-tab-panel {
  display: none;
}
.services-tab-panel.active {
  display: block;
}
.services-panel-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.services-panel-image {
  flex: 1 1 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-panel-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.services-panel-content {
  flex: 1 1 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-panel-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 24px 0;
}
.services-panel-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 18px;
}
.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-top: 16px;
  max-width: fit-content;
}
.services-btn .material-icons {
  font-size: 22px;
}
.services-btn:hover {
  background: #d60000;
}
@media (max-width: 1024px) {
  .services-section {
    padding: 48px 32px 0 32px;
  }
  .services-title {
    font-size: 2.2rem;
  }
  .services-panel-row {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .services-panel-image,
  .services-panel-content {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding: 32px 32px 32px 32px;
  }
  .services-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .services-tabs {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }
  .services-tab {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 1rem;
    padding: 10px 0;
  }
  .services-panel-row {
    gap: 16px;
    margin-top: 16px;
  }
  .services-panel-image {
    width: 100%;
  }
  .services-panel-content {
    width: 100%;
  }
  .services-panel-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .services-panel-content p {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }
  .services-btn {
    font-size: 1rem;
    padding: 10px 20px;
    width: auto;
  }
  .services-panel-image img {
    border-radius: 10px;
  }
}

/* Industries Section */
.industries-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.industries-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 80px 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
  justify-items: center;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  box-shadow: none;
  padding: 0;
}
.industry-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.industry-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.industry-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: #222;
  margin: 0;
}
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 18px;
  }
}
@media (max-width: 800px) {
  .industries-section {
    padding: 48px 32px 0 32px;
  }
  .industries-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 24px 12px;
  }
}
@media (max-width: 600px) {
  .industries-section {
    padding: 32px 32px 32px 32px;
  }
  .industries-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px 0;
  }
  .industry-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .industry-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .industry-card p {
    font-size: 0.98rem;
  }
}

/* Gallery Section */
.gallery-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.gallery-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 80px 0;
}
.gallery-container {
  width: 100%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
  margin-bottom: 32px;
}
.gallery-img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.gallery-hidden {
  display: none;
}
.gallery-load-more {
  display: block;
  margin: 0 auto;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.gallery-load-more:hover {
  background: #d60000;
}
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gallery-lightbox.active {
  display: flex;
}
.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.gallery-lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 2100;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  transition: color 0.2s;
}
.gallery-lightbox-close:hover {
  color: #ff0000;
}
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .gallery-section {
    padding: 64px 32px 64px 32px;
  }
  .gallery-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .gallery-section {
    padding: 32px 32px 32px 32px;
  }
  .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-img {
    max-width: 100%;
    border-radius: 10px;
  }
  .gallery-lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
    border-radius: 10px;
  }
  .gallery-lightbox-close {
    top: 16px;
    right: 24px;
    font-size: 2.2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.testimonials-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px 0;
}
.testimonials-container {
  width: 100%;
}
.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.testimonials-arrow {
  background: #fff;
  border: 1.5px solid #222;
  color: #222;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin: 0 32px;
}
.testimonials-arrow:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.testimonials-slide-wrapper {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.testimonials-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
  height: 220px;
}
.testimonials-slide.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
}
.testimonials-quote {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  margin-top: 0;
}
.testimonials-author {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  transition: background 0.2s;
}
.testimonials-dot.active {
  background: #ff0000;
}
@media (max-width: 900px) {
  .testimonials-section {
    padding: 64px 32px 64px 32px;
  }
  .testimonials-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .testimonials-quote {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .testimonials-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin: 0 12px;
  }
}
@media (max-width: 600px) {
  .testimonials-section {
    padding: 32px 32px 32px 32px;
  }
  .testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .testimonials-quote {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .testimonials-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin: 0 4px;
  }
  .testimonials-dot {
    width: 8px;
    height: 8px;
  }
}

/* Contact Section */
.contact-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 112px 24px;
}
.contact-container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.contact-form-col {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 600px;
}
.contact-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 40px 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form label {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  
}
.contact-form input,
.contact-form textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #222;
  outline: none;
  transition: border 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff0000;
}
.contact-btn-form {
  background: #ff0000;
color: #fff;
border-radius: 32px;
padding: 12px 32px;
font-family: 'Barlow', sans-serif;
font-size: 18px;
font-weight: 700;
text-decoration: none;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
transition: background 0.2s;
width: 100%;
}
.contact-btn-form:hover {
  background: #d60000;
}
.contact-btn .material-icons {
  font-size: 22px;
}
.contact-image-col {
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-image {
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
@media (max-width: 1024px) {
  .contact-section {
    padding: 64px 32px 64px 32px;
  }
  .contact-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .contact-container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .contact-image {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 32px 32px 32px 32px;
  }
  .contact-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .contact-form-col,
  .contact-image-col {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
  .contact-btn-form {
    background: #ff0000;
  color: #fff;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: background 0.2s;
  width: 100%;
  }
  .contact-btn-form:hover {
    background: #d60000;
  }
  .contact-image {
    border-radius: 8px;
  }
}

/* Footer Section */
.footer-section {
  background: #000;
  color: #fff;
  padding: 48px 0 0 0;
  font-family: 'Barlow', sans-serif;
}
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 64px 0 64px;
  flex-wrap: wrap;
}
.footer-left {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logo-img {
  width: 180px;
  height: auto;
  margin-bottom: 24px;
}
.footer-address-block {
  font-size: 1rem;
  color: #fff;
}
.footer-address-block p {
  margin: 0 0 18px 0;
  line-height: 1.6;
}
.footer-link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #ff0000;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.footer-social img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: brightness(0) invert(36%) sepia(99%) saturate(7492%) hue-rotate(357deg) brightness(1.1);
}
.footer-right {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  justify-content: center;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav li {
  font-size: 1rem;
  font-weight: 600;
  a {
 
    text-decoration: none;
  
  }
  a:hover, a.active {
    color: #ff0000;
  }
}
.footer-divider {
  border: none;
  border-top: 1px solid #fff;
  margin: 48px 64px 0 64px;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 24px 0;
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 32px 0 32px;
    align-items: flex-start;
  }
  .footer-right {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-divider {
    margin: 32px 32px 0 32px;
  }
}
@media (max-width: 600px) {
  .footer-section {
    padding: 32px 0 0 0;
  }
  .footer-container {
    padding: 0 12px 0 12px;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-logo-img {
    width: 160px;
    margin-bottom: 16px;
  }
  .footer-address-block {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-right {
    width: 100%;
    justify-content: center;
  }
  .footer-nav {
    align-items: center;
  }
  .footer-divider {
    margin: 24px 12px 0 12px;
  }
  .footer-bottom {
    font-size: 0.95rem;
    padding: 12px 0 16px 0;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  border: none;
  outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 1200;
}
.scroll-to-top .material-icons {
  font-size: 2.2rem;
}
.scroll-to-top:hover {
  background: #d60000;
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .scroll-to-top .material-icons {
    font-size: 1.7rem;
  }
}

/* Contact Form Error Styles */
.contact-form-error {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
    line-height: 1.4;
}

.contact-form-error.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.contact-form-error.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

@media (max-width: 768px) {
    .contact-form-error {
        margin-top: 10px;
        font-size: 13px;
        padding: 8px;
    }
}

/* Buy Page Styles */
.buy-hero {
  position: relative;
  min-height: 400px;
  background-image: url('./assets/buy/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.buy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.buy-hero-title {
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.buy-section_divider {
  margin-bottom: 64px;
}

.buy-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 24px 32px 24px;
}

.buy-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.buy-section-heading h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 0 0;
  line-height: 1.1;
}

.buy-section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.buy-section-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.buy-section-card:hover {
  transform: translateY(-5px);
}

.buy-section-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.buy-section-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 16px 16px 8px 16px;
  line-height: 1.2;
}

.buy-button {
  background: #fff;
  color: #666;
  border: 1.5px solid #666;
  border-radius: 32px;
  padding: 8px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 16px 16px 16px 16px;
  display: block;
  width: calc(100% - 32px);
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.buy-button:hover {
  background: #f5f5f5;
  border-color: #444;
  color: #444;
}

.get-pdf-link {
  color: #ff0000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  margin: 8px 16px 0 16px;
  display: block;
  text-align: center;
  transition: color 0.2s;
}

.get-pdf-link:hover {
  color: #d60000;
}

.as-is-price {
  color: #ff0000;
  font-weight: 700;
  font-size: 18px;
  margin: 8px 16px;
  text-align: center;
}

.buy-specs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 24px 0px 24px;
  width: -webkit-fill-available;
  width: -moz-available;
}

.buy-specs-link {
  color: #666;
  text-decoration: underline;
  font-size: 16px;
  transition: color 0.3s ease;
  width: -webkit-fill-available;
  width: -moz-available;
}

.buy-specs-link:hover {
  color: #333;
  text-decoration: none !important;
}

.buy-specs-icon {
  color: #ff0000;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .buy-hero {
    min-height: 320px;
  }
  
  .buy-hero-title {
    font-size: 2.5rem;
  }
  
  .buy-hero-content {
    max-width: 90vw;
  }
  
  .buy-section {
    padding: 80px 24px 24px 24px;
  }
  
  .buy-section-top {
    gap: 32px;
    margin-bottom: 32px;
  }
  
  .buy-section-heading h2 {
    font-size: 2.5rem;
  }
  
  .buy-section-cards {
    gap: 24px;
  }
  
  .buy-section-card img {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .buy-hero {
    min-height: 200px;

  }
  
  .buy-hero-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  
  .buy-hero-content {
    max-width: 95vw;
  }
  
  .buy-section {
    padding: 64px 16px 16px 16px;
  }
  
  .buy-section-top {
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .buy-section-heading h2 {
    font-size: 2rem;
  }
  
  .buy-section-cards {
    gap: 16px;
  }
  
  .buy-section-card img {
    height: 160px;
  }
  
  .buy-section-card h3 {
    font-size: 1.1rem;
    margin: 12px 12px 6px 12px;
  }
  
  .buy-specs-container {
    padding: 6px 12px 0px 12px;
  }
  
  .buy-specs-link {
    font-size: 16px;
  }
  
  .buy-specs-icon {
    font-size: 14px;
  }
}

.specs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 24px 24px 16px;
  width: -webkit-fill-available;
  width: -moz-available;
}

.specs-link {
  color: #666;
  text-decoration: underline;
  font-size: 16px;
  transition: color 0.3s ease;
  width: -webkit-fill-available;
  width: -moz-available;
}

.specs-link:hover {
  color: #333;
  text-decoration: none !important;
}

.specs-icon {
  color: #ff0000;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .specs-container {
    padding: 6px 12px 24px 12px;
  }
  
  .specs-link {
    font-size: 16px;
  }
  
  .specs-icon {
    font-size: 14px;
  }
}

/* Fleet Page Styles */
.fleet-hero {
  position: relative;
  min-height: 400px;
  background-image: url('./assets/fleet/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.fleet-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.fleet-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.fleet-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.fleet-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 24px;
}

.fleet-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fleet-section-heading h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.fleet-section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.fleet-section-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fleet-section-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fleet-section-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 16px 16px 8px;
  color: #333;
}

.fleet-section_divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 0;
}

/* Responsive styles for fleet page */
@media (max-width: 1024px) {
  .fleet-hero {
    min-height: 300px;
  }
  
  .fleet-hero-title {
    font-size: 2.5rem;
  }
  
  .fleet-section {
    padding: 48px 24px;
  }
  
  .fleet-section-top {
    gap: 24px;
  }
  
  .fleet-section-heading h2 {
    font-size: 2rem;
  }
  
  .fleet-section-cards {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .fleet-hero {
    min-height: 200px;
  }
  
  .fleet-hero-title {
    font-size: 2rem;
  }
  
  .fleet-section {
    padding: 32px 16px;
  }
  
  .fleet-section-top {
    gap: 16px;
  }
  
  .fleet-section-heading h2 {
    font-size: 1.75rem;
  }
  
  .fleet-section-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .fleet-section-card img {
    height: 180px;
  }
  
  .fleet-section-card h3 {
    font-size: 1.125rem;
    margin: 12px 12px 6px;
  }
} 