body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=80")
    no-repeat center center fixed;
  background-size: cover;
  color: #f0f8ff;
  overflow-x: hidden;
}

.overlay {
  background: linear-gradient(to bottom, rgba(15, 32, 39, 0.9), rgba(32, 58, 67, 0.9), rgba(44, 83, 100, 0.9));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-text {
  text-align: center;
}

header h1 {
  font-size: 3.2rem;
  margin: 0;
  letter-spacing: 2px;
  color: #ffffff;
}

header .logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #aad8ff;
  margin-top: 0.5rem;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  header h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  header .logo {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 50px;
    height: 50px;
  }

  header h1 {
    font-size: 1.8rem;
  }
}

nav {
  background-color: rgba(0, 0, 50, 0.5);
  padding: 1rem 0;
  text-align: center;
  position: relative;
}

nav a {
  color: #ffffff;
  margin: 0 1.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #aad8ff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 2s ease;
}

.hero h2 {
  font-size: 2.8rem;
  color: #aad8ff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 1rem auto;
}

.hero a {
  display: inline-block;
  margin-top: 2rem;
  background-color: #aad8ff;
  color: #001f3f;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero a:hover {
  background-color: #7dbbff;
}

/* New hero button styles */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn.primary {
  background-color: #aad8ff;
  color: #001f3f;
}

.hero-btn.primary:hover {
  background-color: #7dbbff;
  transform: translateY(-2px);
}

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

.hero-btn.secondary:hover {
  background-color: #aad8ff;
  color: #001f3f;
  transform: translateY(-2px);
}

.content {
  max-width: 1000px;
  margin: auto;
  padding: 3rem 2rem;
}

/* Introduction section styles */
.intro-section {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #e0e8f0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #aad8ff;
  margin-bottom: 1rem;
}

/* Services preview styles */
.services-preview {
  margin: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-preview {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-preview:hover {
  transform: translateY(-5px);
}

.service-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-preview-content {
  padding: 1.5rem;
}

.service-preview h3 {
  color: #aad8ff;
  margin-bottom: 1rem;
}

.service-link {
  color: #aad8ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #7dbbff;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Areas section styles */
.areas-section {
  background: rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 4rem 0;
  text-align: center;
}

.areas-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e0e8f0;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.area-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
}

.areas-note {
  font-style: italic;
  color: #aad8ff;
  margin-top: 2rem;
}

/* Testimonial preview styles */
.testimonial-preview {
  margin: 4rem 0;
  text-align: center;
}

.testimonial-highlight {
  background: rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author div {
  text-align: left;
}

.testimonial-author strong {
  display: block;
  color: #aad8ff;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #ccc;
}

/* Final CTA styles */
.final-cta {
  background: rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.contact-quick {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.contact-quick a {
  color: #aad8ff;
  text-decoration: none;
  font-weight: bold;
}

.contact-quick a:hover {
  color: #7dbbff;
}

/* CTA Button styles */
.cta-button {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background-color: #aad8ff;
  color: #001f3f;
}

.cta-button.primary:hover {
  background-color: #7dbbff;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background-color: transparent;
  color: #aad8ff;
  border: 2px solid #aad8ff;
}

.cta-button.secondary:hover {
  background-color: #aad8ff;
  color: #001f3f;
  transform: translateY(-2px);
}

.cta-button:not(.primary):not(.secondary) {
  background-color: #aad8ff;
  color: #001f3f;
}

.cta-button:not(.primary):not(.secondary):hover {
  background-color: #7dbbff;
  transform: translateY(-2px);
}

.service {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.3);
}

.service img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.service div {
  max-width: 600px;
}

.service ul {
  list-style: none;
  padding: 0;
}

.service li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service li:before {
  content: "✓";
  color: #aad8ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

h2 {
  color: #aad8ff;
  font-size: 2rem;
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

.cta a {
  background-color: #aad8ff;
  color: #001f3f;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

/* About Page Styles */
.about-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.values-section {
  margin: 3rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.team-section {
  margin: 3rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Pricing Page Styles */
.pricing-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #aad8ff;
  transform: scale(1.05);
}

.price {
  font-size: 2rem;
  color: #aad8ff;
  font-weight: bold;
  margin: 1rem 0;
}

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

.additional-services {
  margin: 3rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-price {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.guarantee-section {
  margin: 3rem 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
}

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

.contact-item h4 {
  color: #aad8ff;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #aad8ff;
  text-decoration: none;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #aad8ff;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #555;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #aad8ff;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-weight: bold;
}

.submit-btn {
  background-color: #aad8ff;
  color: #001f3f;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #7dbbff;
}

.service-areas {
  margin: 3rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.quick-contact {
  text-align: center;
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
}

.quick-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.quick-btn {
  background-color: #aad8ff;
  color: #001f3f;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

footer {
  background-color: #1c2b3a;
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #aad8ff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  header h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  header .logo {
    font-size: 1rem;
  }

  nav {
    padding: 0.8rem 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 50, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0.5rem 0;
    padding: 0.5rem;
    display: block;
    text-align: center;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .content {
    padding: 2rem 1rem;
  }

  .service,
  .about-section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .service img {
    max-width: 100%;
    width: 100%;
  }

  .service div {
    max-width: 100%;
  }

  h2 {
    font-size: 1.6rem;
  }

  .service h3 {
    font-size: 1.3rem;
  }

  .cta a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .features-grid,
  .services-grid,
  .pricing-grid,
  .values-grid,
  .team-grid,
  .guarantee-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author div {
    text-align: center;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quick-buttons {
    flex-direction: column;
    align-items: center;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero a {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }

  .service,
  .about-section {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .service h3 {
    font-size: 1.1rem;
  }

  .service p {
    font-size: 0.9rem;
  }

  .cta a {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Thank You Page Styles */
.thank-you-section {
  margin: 2rem 0;
}

.thank-you-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.2);
}

.thank-you-message {
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 2rem 0;
  color: #e0e8f0;
}

.response-time {
  background: rgba(170, 216, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #aad8ff;
}

.next-steps {
  margin: 3rem 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps h3 {
  color: #aad8ff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.steps-list {
  list-style: none;
  padding: 0;
}

.steps-list li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-list li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0.8rem;
  background: #aad8ff;
  color: #001f3f;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.steps-list {
  counter-reset: step-counter;
}

.contact-reminder {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.contact-reminder h3 {
  color: #aad8ff;
  margin-bottom: 1rem;
}

.phone-numbers {
  margin: 1rem 0;
}

.phone-numbers p {
  margin: 0.5rem 0;
}

.phone-numbers a {
  color: #aad8ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.phone-numbers a:hover {
  color: #7dbbff;
}

.phone-hours {
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
  margin-top: 1rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.why-choose-us {
  margin: 4rem 0;
}

/* Mobile adjustments for thank you page */
@media (max-width: 768px) {
  .thank-you-card {
    padding: 2rem 1rem;
  }

  .thank-you-message {
    font-size: 1rem;
  }

  .next-steps {
    text-align: center;
  }

  .steps-list li {
    text-align: left;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .thank-you-card {
    padding: 1.5rem 1rem;
  }

  .contact-reminder {
    padding: 1.5rem;
  }
}

/* Gallery Page Styles */
.gallery-section {
  margin: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item h4 {
  color: #aad8ff;
  margin-bottom: 0.5rem;
}

.testimonials-section {
  margin: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial h4 {
  color: #aad8ff;
  font-size: 0.9rem;
}

/* Mobile adjustments for gallery */
@media (max-width: 768px) {
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 150px;
  }
}
