/* Updated all classes with amb- prefix (Am bridge) and new orange construction theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  color: #2c3e50;
}

/* Header with new styling */
header {
  background: #fff;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.amb-header-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.4rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand color updated to construction orange */
.amb-logo {
  font-size: 2.3rem;
  font-weight: 900;
  color: #e67e22;
  text-decoration: none;
  letter-spacing: -1px;
  text-transform: capitalize;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.8rem;
}

nav a {
  text-decoration: none;
  color: #34495e;
  font-weight: 700;
  transition: color 0.3s;
  font-size: 0.98rem;
}

nav a:hover {
  color: #e67e22;
}

.amb-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #34495e;
}

/* Hero Section with orange gradient and bridge construction image */
.amb-hero-area {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  padding: 150px 2rem 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.amb-hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1590779033100-9f60a05a013d?w=1400&h=700&fit=crop");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.amb-hero-content {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.amb-hero-area h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  letter-spacing: -1px;
}

.amb-hero-area p {
  font-size: 1.45rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.65;
}

.amb-cta-button {
  display: inline-block;
  background: white;
  color: #e67e22;
  padding: 1.3rem 3.2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.18rem;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.amb-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  background: #f5f5f5;
}

/* Stats Section with new layout */
.amb-stats-section {
  background: #f8f9fa;
  padding: 5.5rem 2rem;
}

.amb-stats-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4.5rem;
  text-align: center;
}

.amb-stat-item h3 {
  font-size: 3.8rem;
  color: #e67e22;
  margin-bottom: 1rem;
  font-weight: 900;
}

.amb-stat-item p {
  color: #7f8c8d;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Services Section renamed with construction styling */
.amb-offerings-area {
  padding: 6.5rem 2rem;
  background: #ffffff;
}

.amb-offerings-area h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 900;
}

.amb-subtitle {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 4.5rem;
  font-size: 1.3rem;
  font-weight: 400;
}

.amb-offerings-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.5rem;
}

.amb-offering-box {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 3.2rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 6px solid #e67e22;
}

.amb-offering-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(230, 126, 34, 0.2);
}

.amb-offering-emoji {
  font-size: 4.2rem;
  margin-bottom: 1.7rem;
}

.amb-offering-box h3 {
  color: #e67e22;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 900;
}

.amb-offering-box p {
  color: #7f8c8d;
  line-height: 1.9;
  font-size: 1.1rem;
}

/* About Section with construction company narrative */
.amb-story-area {
  padding: 6.5rem 2rem;
  background: #f8f9fa;
}

.amb-story-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.amb-story-copy h2 {
  font-size: 3.2rem;
  margin-bottom: 2.2rem;
  color: #2c3e50;
  font-weight: 900;
  line-height: 1.2;
}

.amb-story-copy p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 2;
  font-size: 1.12rem;
}

.amb-company-details {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 12px;
  margin: 2.8rem 0;
  border-left: 8px solid #e67e22;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.amb-company-details p {
  margin: 1rem 0;
  font-size: 1.08rem;
  color: #34495e;
  font-weight: 700;
}

.amb-story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.amb-story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}

.amb-story-image:hover img {
  transform: scale(1.08);
}

/* Zones Section with project realizations grid */
.amb-zones-area {
  padding: 6.5rem 2rem;
  background: #ffffff;
}

.amb-zones-area h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 900;
}

.amb-zones-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3.5rem;
}

.amb-zone-tile {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.amb-zone-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.amb-zone-tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.amb-zone-details {
  padding: 2.5rem;
}

.amb-zone-details h3 {
  color: #e67e22;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  font-weight: 900;
}

.amb-zone-details p {
  color: #7f8c8d;
  line-height: 1.85;
  font-size: 1.1rem;
}

/* Testimonials Section with client feedback */
.amb-feedback-area {
  padding: 6.5rem 2rem;
  background: #f8f9fa;
}

.amb-feedback-area h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 4.5rem;
  color: #2c3e50;
  font-weight: 900;
}

.amb-feedback-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3.5rem;
}

.amb-feedback-card {
  background: #ffffff;
  padding: 3.2rem;
  border-radius: 12px;
  border-left: 8px solid #e67e22;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.amb-feedback-text {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 2rem;
  line-height: 2;
  font-size: 1.12rem;
}

.amb-feedback-name {
  font-weight: 900;
  color: #e67e22;
  font-size: 1.2rem;
}

/* CTA Section with orange construction theme */
.amb-final-push {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  padding: 6.5rem 2rem;
  text-align: center;
}

.amb-final-push h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.amb-final-push p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 400;
}

/* Footer with updated styling */
footer {
  background: #1c1c1c;
  color: white;
  padding: 4.5rem 2rem 2rem;
}

.amb-footer-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 4.5rem;
  margin-bottom: 3.5rem;
}

.amb-footer-block h3 {
  color: #e67e22;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 900;
}

.amb-footer-block ul {
  list-style: none;
}

.amb-footer-block ul li {
  margin-bottom: 1rem;
}

.amb-footer-block a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}

.amb-footer-block a:hover {
  color: #e67e22;
}

.amb-footer-block p {
  color: #bdc3c7;
  line-height: 1.9;
  font-size: 1.1rem;
}

.amb-footer-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
}

.amb-footer-info p {
  font-size: 1rem;
  margin: 0.7rem 0;
}

.amb-footer-base {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 3.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  color: #95a5a6;
  font-size: 0.98rem;
}

/* Contact Page styles updated */
.amb-contact-header {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  padding: 110px 2rem 90px;
  text-align: center;
}

.amb-contact-header h1 {
  font-size: 3.8rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}

.amb-contact-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
}

.amb-contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.amb-input-group {
  margin-bottom: 2.2rem;
}

.amb-input-group label {
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 800;
  color: #2c3e50;
  font-size: 1.1rem;
}

.amb-input-group input,
.amb-input-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.amb-input-group input:focus,
.amb-input-group textarea:focus {
  outline: none;
  border-color: #e67e22;
}

.amb-input-group textarea {
  min-height: 200px;
  resize: vertical;
}

.amb-form-submit {
  background: #e67e22;
  color: white;
  padding: 1.3rem 3.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.amb-form-submit:hover {
  background: #d35400;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.35);
}

.amb-contact-info {
  background: #f8f9fa;
  padding: 3.5rem;
  border-radius: 12px;
}

.amb-contact-info h2 {
  color: #e67e22;
  margin-bottom: 3.5rem;
  font-size: 2.2rem;
  font-weight: 900;
}

.amb-info-section {
  margin-bottom: 3.5rem;
}

.amb-info-section h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.amb-info-section p {
  color: #7f8c8d;
  line-height: 1.9;
  font-size: 1.12rem;
}

/* Legal Pages with updated styling */
.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
}

.legal-page h1 {
  color: #e67e22;
  margin-bottom: 3.5rem;
  font-size: 3.2rem;
  font-weight: 900;
}

.legal-page h2 {
  color: #2c3e50;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  font-weight: 900;
}

.legal-page h3 {
  color: #e67e22;
  margin-top: 2.5rem;
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.legal-page p {
  color: #7f8c8d;
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 1.12rem;
}

.legal-page ul {
  margin-left: 3.5rem;
  margin-bottom: 1.5rem;
}

.legal-page ul li {
  color: #7f8c8d;
  line-height: 2;
  margin-bottom: 1rem;
  font-size: 1.12rem;
}

/* Cookie Banner with orange theme */
#amb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.97);
  color: white;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.35);
  z-index: 10000;
  display: none;
}

#amb-cookie-banner.show {
  display: block;
}

.amb-cookie-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.5rem;
}

.amb-cookie-buttons {
  display: flex;
  gap: 1.5rem;
}

.amb-cookie-yes,
.amb-cookie-no {
  padding: 1.1rem 2.2rem;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.amb-cookie-yes {
  background: #e67e22;
  color: white;
}

.amb-cookie-yes:hover {
  background: #d35400;
}

.amb-cookie-no {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.amb-cookie-no:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .amb-mobile-toggle {
    display: block;
  }

  nav ul {
    display: none;
  }

  .amb-hero-area h1 {
    font-size: 3.2rem;
  }

  .amb-hero-area p {
    font-size: 1.25rem;
  }

  .amb-story-layout,
  .amb-contact-container {
    grid-template-columns: 1fr;
  }

  .amb-offerings-grid,
  .amb-zones-grid,
  .amb-feedback-grid {
    grid-template-columns: 1fr;
  }

  .amb-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
