html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.05rem;
  margin: 0;
  padding: 0;
  color: #0c1a2b;
  background: #fffdfb;
}

a {
  text-decoration: none;
  color: #f26622;
}

header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  font-weight: bold;
  font-size: 1.5rem;
  color: #0c1a2b;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a.btn {
  background: #f46623;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

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

.nav-links a,
nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  padding: 2rem;
  text-align: center;
  background: #fffdfb;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-text strong,
.hero-text .highlight {
  color: #f26622;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #444;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.button-main,
.secondary-btn {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: bold !important;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 160px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.button-main {
  background-color: #f26622;
  color: white !important;
  border: 2px solid #f26622;
  cursor: pointer;
}

.secondary-btn {
  background-color: transparent;
  color: #f26622;
  border: 2px solid #f26622;
}

.button-main:hover,
.newsletter-signup button:hover {
  background-color: #d95415;
  border-color: #d95415;
  color: white;
}

.secondary-btn:hover {
  background-color: #f26622;
  color: white;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
}

.error-image {
  max-width: 400px;
  margin: 2rem auto;
}

.error-image img {
  max-width: 100%;
  height: auto;
}

.credibility-note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.about {
  flex: 1 1 45%;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #0c1a2b;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.about-services {
  text-align: left;
  padding: 2rem;
  background: #fffdfb;
}

.about-services .service-block p i.icon {
  color: #f26622;
  padding-right: 0.2rem;
}

.story-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.story-columns p {
  flex: 1 1 45%;
  margin: 0;
}

.services {
  flex: 1 1 45%;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0c1a2b;
}

.service {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.service .icon {
  font-size: 1.8rem;
  color: #f26622;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.service h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #0c1a2b;
}

.service p {
  font-size: 1rem;
  margin: 0;
  color: #444;
}

.our-process {
  background: #fffdfb;
  padding: 4rem 2rem;
  text-align: center;
}

.our-process h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0c1a2b;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  flex: 1 1 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.25rem;
  color: #f26622;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #444;
}

.contact-cta {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2rem;
  color: #0c1a2b;
  margin-bottom: 0.5rem;
}

.contact-cta p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.newsletter-signup {
  padding: 3rem 2rem;
  background-color: #f8f8f8;
  text-align: center;
}

.newsletter-signup h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.newsletter-signup p {
  margin-bottom: 1.5rem;
  color: #555;
}

.newsletter-signup form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-signup input[type="email"] {
  border: 1px solid #ccc;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.newsletter-signup button {
  background-color: #f26622;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.services-hero {
  padding: 2rem;
  text-align: center;
  background: #fffdfb;
  max-width: 1100px;
  margin: 0 auto;
}

.services-hero .hero-image,
.about-hero img {
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
}

.services-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0c1a2b;
}

.services-hero .highlight {
  color: #f26622;
}

.services-hero p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.services-hero .hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.service-block {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.service-block h2 {
  font-size: 1.5rem;
  color: #0c1a2b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-block h2 i {
  font-size: 1.5rem;
  color: #f26622;
}

.service-block .price {
  font-size: 1.1rem;
  color: #f26622;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-block li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-block li::before {
  content: "✔";
  color: #f26622;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.portfolio-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
  padding: 1rem;
  background: #f2f1f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.vertical-image {
  max-width: 300px;
  max-height: 500px;
}

.cta-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  color: #0c1a2b;
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-container {
  padding: 4rem 2rem;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  margin: 4rem auto;
  max-width: 1100px;
}

.contact-container .form-image-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-container .form-side,
.contact-container .image-side {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-container .image-side img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  color: #0c1a2b;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details i {
  color: #f26622;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  gap: 1rem;
}

.form-group input {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Segoe UI", sans-serif;
}

.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Segoe UI", sans-serif;
  min-height: 120px;
  resize: vertical;
}

.contact-form .button-main {
  margin-top: 1rem;
  width: 100%;
}

.form-note {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 1rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

footer {
  background: white;
  border-top: 1px solid #eee;
  padding: 2rem;
  font-size: 0.95rem;
  color: #0c1a2b;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo .logo span {
  display: block;
  font-size: 0.75rem;
  color: #444;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  color: #0c1a2b;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.social-icons i {
  font-size: 24px;
  color: #555;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #0074ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #444;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .contact-container .form-image-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-container .form-side,
  .contact-container .image-side {
    flex: 1 1 100%;
    width: 100%;
  }

  .contact-container .image-side {
    order: 2;
    text-align: center;
  }

  .contact-container .form-side {
    order: 1;
  }

  .info-section {
    flex-direction: column;
  }

  .about,
  .services {
    flex: 1 1 100%;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .about-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .menu-toggle {
    display: block;
    z-index: 1100;
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 1.5rem;
    background: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex; /* Show menu when 'show' class is added */
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-block h2 {
    font-size: 1.3rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .story-columns {
    flex-direction: column;
  }

  .story-columns p {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }

  .contact-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .error-image {
    max-width: 300px;
  }

  .header-logo-img {
    max-height: 50px;
  }

  .footer-logo-img {
    max-height: 40px;
  }

  .services-hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-block h2 {
    font-size: 1.2rem;
  }
}
