/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0b344a;
}

.nav-link.active {
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Contact Bar */
.contact-bar {
  background: linear-gradient(135deg, #0b344a 0%, #1a4a63 100%);
  color: white;
  padding: 8px 0;
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 999;
}

.contact-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-phone .contact-text:hover {
  opacity: 0.8;
}

.business-hours-status {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0b724;
  margin-left: 1rem;
}

.status-open {
  color: #28a745;
  font-weight: 700;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 140px 20px 50px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 52, 74, 0.3);
  z-index: -1;
  transition: background-color 2s ease-in-out;
}

.hero-overlay.gold-background {
  background: #f0b724;
}

.hero-collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh; /* Extend beyond viewport to ensure full coverage */
  opacity: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-collage.active {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

/* Ashlar tile styles - positioned absolutely by JavaScript */
.ashlar-tile {
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.6s ease-out;
  position: absolute;
}

.ashlar-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Legacy collage item styles for fallback */
.collage-item {
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.6s ease-out;
}

.collage-item.animate-in {
  opacity: 0.75;
  transform: scale(1) translateY(0);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Legacy grid-based styles removed - now using Ashlar absolute positioning */

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  color: white;
  padding: 40px 60px;
  background: rgba(
    11,
    52,
    74,
    0.75
  ); /* Dark glazed background using primary brand color */
  backdrop-filter: blur(8px); /* Glass effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Soft shadow */
  opacity: 0; /* Hidden initially */
  transform: translateY(30px); /* Slightly offset for animation */
  transition: all 1s ease-out; /* Smooth reveal animation */
}



.hero-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section button overrides */
.hero-content .btn-primary {
  background-color: #f0b724; /* Secondary brand color */
  color: #0b344a; /* Primary brand color for text */
  border-color: #f0b724;
  font-weight: 700;
}

.hero-content .btn-primary:hover {
  background-color: #d49a1f; /* Darker shade of secondary color */
  color: #0b344a;
  border-color: #d49a1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 183, 36, 0.3);
}

.hero-content .btn-secondary {
  background-color: transparent;
  color: #f0b724; /* Secondary brand color for text */
  border-color: #f0b724; /* Secondary brand color for border */
  font-weight: 700;
}

.hero-content .btn-secondary:hover {
  background-color: #f0b724; /* Fill with secondary color */
  color: #0b344a; /* Primary color for text */
  border-color: #f0b724;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 183, 36, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease-out 2s forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator.hidden {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(20px) !important;
  pointer-events: none;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  position: relative;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  animation: scrollArrow 2s infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.scroll-arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

.scroll-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  background: rgba(11, 52, 74, 0.8);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-placeholder,
.image-placeholder {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  border: 2px dashed #ccc;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: #0b344a;
  color: white;
  border-color: #0b344a;
}

.btn-primary:hover {
  background-color: #082936;
  border-color: #082936;
}

.btn-secondary {
  background-color: transparent;
  color: #0b344a;
  border-color: #0b344a;
}

.btn-secondary:hover {
  background-color: #0b344a;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: #333;
  border-color: #333;
}

.btn-outline:hover {
  background-color: #333;
  color: white;
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0b344a;
  margin-bottom: 3rem;
  font-weight: 700;
}

.services-overview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #0b344a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
}

.content-split {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.content-text,
.content-image {
  flex: 1;
}

.content-text h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, #0b344a 0%, #082936 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background-color: white;
  color: #0b344a;
  border-color: white;
}

.cta .btn-primary:hover {
  background-color: #f8f9fa;
  color: #0b344a;
  border-color: #f8f9fa;
}

.cta .btn-secondary {
  background-color: #f0b724;
  color: #0b344a;
  border-color: #f0b724;
}

.cta .btn-secondary:hover {
  background-color: #d49a1f;
  color: #0b344a;
  border-color: #d49a1f;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #f0b724;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f0b724;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-admin {
  display: flex;
  align-items: center;
}

.admin-link {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.admin-link:hover {
  color: #f0b724;
  background-color: rgba(240, 183, 36, 0.1);
  opacity: 1;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0b344a 0%, #082936 100%);
  color: white;
  padding: 140px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Our Story */
.our-story {
  padding: 80px 0;
}

.our-story h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.our-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Our Mission */
.our-mission {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.mission-content {
  text-align: center;
}

.mission-content h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.mission-statement {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.value-item h3 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

/* What Sets Us Apart */
.what-sets-us-apart {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Services Page Styles */
.main-services {
  padding: 80px 0 0;
}

.service-detail {
  margin-bottom: 80px;
}

/* Reduce spacing for Design Process section */
.design-process-section {
}

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.service-detail.reverse .service-content {
  flex-direction: row-reverse;
}

.service-text,
.service-image {
  flex: 1;
}

.service-example-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-text h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-text h3 {
  color: #333;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.surface-list,
.application-list,
.sign-types,
.materials-list,
.design-list {
  list-style: none;
  margin-bottom: 2rem;
}

.surface-list li,
.application-list li,
.sign-types li,
.materials-list li,
.design-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.surface-list li:before,
.application-list li:before,
.sign-types li:before,
.materials-list li:before,
.design-list li:before {
  content: "•";
  color: #0b344a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Process Timeline Styles */
.process-steps {
  margin-top: 3rem;
  position: relative;
  padding: 2rem 0;
}

.process-title {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Timeline container */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 2rem 0;
}

/* Timeline line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(
    to right,
    #0b344a 0%,
    #0b344a 33%,
    #0b344a 66%,
    #0b344a 100%
  );
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 200px;
}

.step-number {
  background-color: #0b344a;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-bottom: 1rem;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(11, 52, 74, 0.3);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(11, 52, 74, 0.4);
}

.step-content {
  padding: 0 1rem;
}

.step-content h4 {
  color: #0b344a;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.additional-services {
  background-color: #f8f9fa;
  padding: 80px 0;
}

/* Gallery Page Styles */
.gallery-filter {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: white;
  border: 2px solid #ddd;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #333;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #0b344a;
  border-color: #0b344a;
  color: white;
}

.gallery-grid {
  padding: 80px 0;
}

.gallery-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px dashed #ccc;
}

.placeholder-content {
  text-align: center;
  padding: 2rem;
}

.placeholder-content h3 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.placeholder-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.category-tag {
  background-color: #0b344a;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-showcase {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.showcase-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.showcase-image,
.showcase-text {
  flex: 1;
}

.image-placeholder.large {
  height: 400px;
}

.showcase-text h3 {
  color: #0b344a;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.project-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-features {
  list-style: none;
  margin-bottom: 2rem;
}

.project-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.project-features li:before {
  content: "✓";
  color: #0b344a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.project-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0b344a;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container h2 {
  color: #0b344a;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-intro {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b344a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.contact-section .contact-info {
  display: block;
}

.contact-section .contact-info h2 {
  color: #0b344a;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-section .contact-info > p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-section .contact-methods {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: #0b344a;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #666;
}

.business-hours,
.emergency-contact {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.business-hours h3,
.emergency-contact h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.hours-item:last-child {
  border-bottom: none;
}

.emergency-number {
  font-size: 1.2rem;
  font-weight: 600;
}

.emergency-number a {
  color: #e74c3c;
  text-decoration: none;
}

.emergency-number a:hover {
  text-decoration: underline;
}

.faq-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #0b344a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Mobile contact bar adjustments */
  .contact-bar {
    padding: 6px 0;
  }

  .contact-bar-container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .contact-text {
    font-size: 0.8rem;
  }

  .business-hours-status {
    font-size: 0.8rem;
    margin-left: 0;
    order: 2;
    width: 100%;
  }

  .hero {
    padding: 160px 20px 50px;
    align-items: flex-end;
    padding-bottom: 8vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  /* Mobile hero-content adjustments */
  .hero-content {
    max-width: 90%;
    padding: 20px;
    margin: 0 10px;
    border-radius: 12px;
    position: relative;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* Mobile Ashlar collage adjustments */
  .hero-collage {
    /* Ashlar layout will automatically adjust for mobile */
  }

  /* Mobile scroll indicator adjustments */
  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-text {
    font-size: 0.8rem;
  }

  .content-split {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .content-split,
  .service-content,
  .showcase-content {
    flex-direction: column;
  }

  .service-detail.reverse .service-content {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Mobile timeline adjustments */
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .step-content {
    padding: 0;
  }

  .step-content h4 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  .gallery-items {
    grid-template-columns: 1fr;
  }

  .project-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile styles for new long-form content sections */
  .industries-grid,
  .steps-grid,
  .comparison-grid,
  .specs-grid,
  .services-detailed,
  .expertise-areas,
  .community-details,
  .quality-standards,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .guide-section,
  .technology-overview,
  .step-item,
  .benefit-item,
  .spec-category,
  .application-category,
  .service-detail-item,
  .expertise-item,
  .community-item,
  .quality-item,
  .planning-section,
  .location-group,
  .travel-policy {
    padding: 1.5rem;
  }

  .guide-section h3,
  .technology-overview h3,
  .benefits-section h2,
  .faq-section h2,
  .technical-specifications h2,
  .industry-applications h2,
  .expertise-section h2,
  .community-commitment h2,
  .quality-assurance h2,
  .project-planning h2,
  .service-area h2 {
    font-size: 1.8rem;
  }

  .wall-printing-guide h2,
  .technology-process h2 {
    font-size: 2rem;
  }

  .step-item h4,
  .benefit-item h3,
  .spec-category h3,
  .application-category h3,
  .service-detail-item h3,
  .expertise-item h3,
  .community-item h3,
  .quality-item h3,
  .planning-section h3,
  .travel-policy h3 {
    font-size: 1.3rem;
  }

  .location-group ul {
    columns: 1;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Long-Form Content Sections */

/* Wall Printing Guide Section */
.wall-printing-guide {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.wall-printing-guide h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.guide-content {
  max-width: 1000px;
  margin: 0 auto;
}

.guide-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.guide-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.guide-sections {
  margin-top: 3rem;
}

.guide-section {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.guide-section h3 {
  color: #0b344a;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid #f0b724;
  padding-bottom: 0.5rem;
}

.guide-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f0b724;
}

.industry-item h4 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.industry-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Technology and Process Section */
.technology-process {
  padding: 80px 0;
  background: white;
}

.technology-process h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.process-content {
  max-width: 1000px;
  margin: 0 auto;
}

.technology-overview {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.technology-overview h3 {
  color: #0b344a;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.technology-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.process-steps h3 {
  color: #0b344a;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-top: 4px solid #f0b724;
}

.step-number {
  background: #0b344a;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-item h4 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.benefits-section h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.benefits-content {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #f0b724;
}

.benefit-item h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.benefit-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

/* Technical Specifications Section */
.technical-specifications {
  padding: 80px 0;
  background: #f8f9fa;
}

.technical-specifications h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.specs-content {
  max-width: 1000px;
  margin: 0 auto;
}

.specs-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.specs-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.spec-category {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.spec-category h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid #f0b724;
  padding-bottom: 0.5rem;
}

.spec-category ul {
  list-style: none;
  padding: 0;
}

.spec-category li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  line-height: 1.6;
}

.spec-category li:last-child {
  border-bottom: none;
}

.spec-category li strong {
  color: #0b344a;
  font-weight: 600;
}

/* Industry Applications Section */
.industry-applications {
  padding: 80px 0;
  background: white;
}

.industry-applications h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.applications-content {
  max-width: 1000px;
  margin: 0 auto;
}

.application-category {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  border-left: 5px solid #f0b724;
}

.application-category h3 {
  color: #0b344a;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.application-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.application-examples h4 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.application-examples ul {
  list-style: none;
  padding: 0;
}

.application-examples li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.application-examples li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f0b724;
  font-weight: bold;
}

/* Services Detailed Section */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detail-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.service-detail-item .service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-detail-item h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-detail-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f0b724;
  font-weight: bold;
  font-size: 1.2rem;
}

/* About Page - Expertise Section */
.expertise-section {
  padding: 80px 0;
  background: white;
}

.expertise-section h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.expertise-content {
  max-width: 1000px;
  margin: 0 auto;
}

.expertise-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.expertise-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.expertise-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.expertise-item {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 5px solid #f0b724;
}

.expertise-item h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.expertise-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Community Commitment Section */
.community-commitment {
  padding: 80px 0;
  background: #f8f9fa;
}

.community-commitment h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.community-content {
  max-width: 1000px;
  margin: 0 auto;
}

.community-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.community-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.community-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.community-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.community-item h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  border-bottom: 3px solid #f0b724;
  padding-bottom: 0.5rem;
}

.community-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Quality Assurance Section */
.quality-assurance {
  padding: 80px 0;
  background: white;
}

.quality-assurance h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.quality-content {
  max-width: 1000px;
  margin: 0 auto;
}

.quality-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.quality-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.quality-standards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.quality-item {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  border-top: 4px solid #f0b724;
}

.quality-item h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.quality-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Contact Page - Project Planning Section */
.project-planning {
  padding: 80px 0;
  background: #f8f9fa;
}

.project-planning h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.planning-content {
  max-width: 1000px;
  margin: 0 auto;
}

.planning-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.planning-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.planning-sections {
  display: grid;
  gap: 2rem;
}

.planning-section {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.planning-section h3 {
  color: #0b344a;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid #f0b724;
  padding-bottom: 0.5rem;
}

.planning-section p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.consultation-details h4,
.timeline-details h4,
.scheduling-details h4 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.consultation-details ul,
.timeline-details ul,
.scheduling-details ul {
  list-style: none;
  padding: 0;
}

.consultation-details li,
.timeline-details li,
.scheduling-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.consultation-details li::before,
.timeline-details li::before,
.scheduling-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f0b724;
  font-weight: bold;
  font-size: 1.2rem;
}

.timeline-details li strong {
  color: #0b344a;
  font-weight: 600;
}

/* Service Area Section */
.service-area {
  padding: 80px 0;
  background: white;
}

.service-area h2 {
  color: #0b344a;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.service-area-content {
  max-width: 1000px;
  margin: 0 auto;
}

.area-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.area-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.service-locations {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
}

.location-category h3 {
  color: #0b344a;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.location-group {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.location-group h4 {
  color: #0b344a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid #f0b724;
  padding-bottom: 0.5rem;
}

.location-group ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 1rem;
}

.location-group li {
  padding: 0.3rem 0;
  color: #555;
  line-height: 1.5;
  break-inside: avoid;
}

.travel-policy {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.travel-policy h3 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.travel-policy p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* SEO Content - Hidden from Users, Visible to Search Engines */
.seo-content-section {
  /* Content is hidden from users but remains in DOM for search engines */
  display: none !important;

  /* Additional SEO-safe hiding techniques */
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;

  /* Ensure content is still accessible to screen readers and search engines */
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

/* Ensure all content within SEO sections maintains proper structure */
.seo-content-section h1,
.seo-content-section h2,
.seo-content-section h3,
.seo-content-section h4,
.seo-content-section h5,
.seo-content-section h6 {
  font-weight: 600;
  color: #0b344a;
  margin-bottom: 1rem;
}

.seo-content-section p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.seo-content-section ul,
.seo-content-section ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.seo-content-section li {
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.5rem;
}

/* Maintain semantic structure for search engines */
.seo-content-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Optional: Add structured data markup support */
.seo-content-section [itemscope] {
  display: block;
}

/* Debug mode - uncomment to temporarily show hidden content for testing */
/*
.seo-content-section {
  display: block !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  background: #fffacd !important;
  border: 2px dashed #ff6b6b !important;
  padding: 1rem !important;
  margin: 1rem 0 !important;
}
*/

/* Admin Styles for Contacts Management */

/* Admin Section */
.admin-section {
  padding: 40px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

/* Header Content */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-text h1 {
  margin-bottom: 0.5rem;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.welcome-text {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.logout-btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b344a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filters Section */
.filters-section {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.filters-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.filter-actions {
  display: flex;
  gap: 0.5rem;
}

/* Contacts Table */
.contacts-table-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contacts-table {
  width: 100%;
  border-collapse: collapse;
}

.contacts-table th {
  background: #0b344a;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.contacts-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

/* Contact table row styles by status */
.contacts-table tr.status-new {
  background: #fff3cd;
}

.contacts-table tr.status-waitingoncustomer {
  background: #e2e3e5;
}

.contacts-table tr.status-waitingonus {
  background: #d1ecf1;
}

.contacts-table tr.status-onorder {
  background: #d4edda;
}

.contacts-table tr.status-abandonedcustomer {
  background: #f8d7da;
}

.contacts-table tr.status-abandonedus {
  background: #f8d7da;
}

.contacts-table tr.status-closed {
  background: #f1f8e9;
}

.contacts-table tr:hover {
  background: #f5f5f5;
}

/* Status Badges */
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Status badge styles */
.status-badge.status-new {
  background: #fff3cd;
  color: #856404;
}

.status-badge.status-waitingoncustomer {
  background: #e2e3e5;
  color: #383d41;
}

.status-badge.status-waitingonus {
  background: #d1ecf1;
  color: #0c5460;
}

.status-badge.status-onorder {
  background: #d4edda;
  color: #155724;
}

.status-badge.status-abandonedcustomer {
  background: #f8d7da;
  color: #721c24;
}

.status-badge.status-abandonedus {
  background: #f8d7da;
  color: #721c24;
}

.status-badge.status-closed {
  background: #d4edda;
  color: #155724;
}

/* Notes Section Styles */
.add-note-form {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.add-note-form .form-row {
  display: flex;
  gap: 1rem;
  align-items: end;
}

.add-note-form .form-group {
  display: flex;
  flex-direction: column;
}

.add-note-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.notes-list {
  max-height: 600px;
  overflow-y: auto;
}

.note-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: white;
}

.note-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.note-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.note-meta strong {
  color: #0B344A;
}

.note-date {
  font-size: 0.85rem;
  color: #6c757d;
}

.note-content {
  line-height: 1.6;
  color: #333;
}

.no-notes {
  text-align: center;
  padding: 2rem;
  color: #6c757d;
  font-style: italic;
}

@media (max-width: 768px) {
  .add-note-form .form-row {
    flex-direction: column;
  }

  .note-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.project-type-badge {
  background: #e3f2fd;
  color: #1565c0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Actions */
.actions {
  white-space: nowrap;
}

.actions .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.pagination {
  display: flex;
  gap: 0.25rem;
}

.pagination .btn {
  min-width: 40px;
  text-align: center;
}

.pagination .current {
  background: #0b344a !important;
  border-color: #0b344a !important;
}

/* No Contacts */
.no-contacts {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.no-contacts h3 {
  color: #333;
  margin-bottom: 1rem;
}

/* Contact Details Page */
.contact-details-section {
  padding: 40px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.details-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.details-card.full-width {
  grid-column: 1 / -1;
}

.details-card h2 {
  color: #0b344a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid #f0b724;
  padding-bottom: 0.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-item label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item span {
  color: #333;
  font-size: 1rem;
}

.project-details-content {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid #0b344a;
  line-height: 1.6;
  color: #333;
}

/* Notes Form */
.notes-form {
  margin-top: 1rem;
}

.notes-textarea {
  width: 100%;
  min-height: 100px;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.notes-textarea:focus {
  outline: none;
  border-color: #0b344a;
}

.form-actions {
  margin-top: 1rem;
}

/* Quick Actions */
.quick-actions {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.quick-actions h3 {
  color: #0b344a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Button Styles */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-success {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-warning {
  background-color: #ffc107;
  color: #212529;
  border-color: #ffc107;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* Delete Confirmation Page */
.delete-confirmation-section {
  padding: 40px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.delete-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.warning-content h2 {
  color: #856404;
  margin-bottom: 0.5rem;
}

.warning-content p {
  color: #856404;
  margin: 0;
}

.contact-summary {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-summary h3 {
  color: #0b344a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-item label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

.project-details-preview,
.notes-preview {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.project-details-preview label,
.notes-preview label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.details-content,
.notes-content {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid #0b344a;
  line-height: 1.6;
  color: #333;
}

.truncated {
  color: #666;
  font-style: italic;
}

.delete-actions {
  margin-bottom: 2rem;
}

.delete-form {
  display: flex;
  justify-content: center;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.alternative-actions {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alternative-actions h4 {
  color: #0b344a;
  margin-bottom: 0.5rem;
}

.alternative-actions p {
  color: #666;
  margin-bottom: 1rem;
}

.alternative-actions ul {
  color: #666;
  padding-left: 1.5rem;
}

.alternative-actions li {
  margin-bottom: 0.5rem;
}

.alternative-actions a {
  color: #0b344a;
  text-decoration: none;
}

.alternative-actions a:hover {
  text-decoration: underline;
}

/* Mobile Admin Styles */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .filters-form {
    grid-template-columns: 1fr;
  }

  .filter-actions {
    justify-content: stretch;
  }

  .filter-actions .btn {
    flex: 1;
  }

  .contacts-table-container {
    overflow-x: auto;
  }

  .contacts-table {
    min-width: 800px;
  }

  .pagination-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile footer adjustments */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-admin {
    order: -1;
  }
}

/* Authentication Styles */

/* Login Section */
.login-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.login-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.login-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.login-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-header h2 {
  color: #0b344a;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.login-header p {
  color: #666;
  margin: 0;
}

/* Login Form */
.login-form {
  margin-bottom: 1.5rem;
}

.login-form .form-group {
  margin-bottom: 1rem;
}

.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.login-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.login-form .form-control:focus {
  outline: none;
  border-color: #0b344a;
  box-shadow: 0 0 0 3px rgba(11, 52, 74, 0.1);
}

.login-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Form Row for side-by-side inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* External Login */
.login-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

.login-divider span {
  background: white;
  padding: 0 1rem;
  color: #666;
  font-size: 0.9rem;
}

.external-login {
  margin-bottom: 1.5rem;
}

.btn-google {
  width: 100%;
  background: white;
  color: #333;
  border: 2px solid #ddd;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background: #f8f9fa;
  border-color: #ccc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-icon {
  flex-shrink: 0;
}

/* Login Footer */
.login-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.login-footer p {
  margin: 0;
  color: #666;
}

.login-footer a {
  color: #0b344a;
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* Access Denied */
.access-denied-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.access-denied-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.access-denied-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.access-denied-content h2 {
  color: #0b344a;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.access-denied-content p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.access-denied-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Validation Errors */
.text-danger {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.validation-summary-errors {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.validation-summary-errors ul {
  margin: 0;
  padding-left: 1.5rem;
}

.validation-summary-errors li {
  color: #721c24;
}

/* Mobile Authentication Styles */
@media (max-width: 768px) {
  .login-card {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }

  .login-header h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .access-denied-actions {
    flex-direction: column;
    align-items: center;
  }

  .access-denied-actions .btn {
    width: 200px;
  }
}
