/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: #1a1a1a;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
}

.utility-bar a {
  color: #ccc;
  margin: 0 12px;
  transition: color 0.3s;
}

.utility-bar a:hover {
  color: #fff;
}

.utility-bar i {
  margin-right: 4px;
}

/* ===== HEADER ===== */
header {
  background: #0d1b2a;
  padding: 20px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.logo-wrap {
  flex-shrink: 0;
}

.logo-icon {
  font-size: 60px;
  color: #4a90d9;
}

.site-heading {
  flex: 1;
  margin-left: 20px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-heading a {
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
nav {
  width: 100%;
  background: #e8edf2;
  margin-top: 15px;
  border-top: 3px solid #4a90d9;
}

nav ul {
  display: flex;
  justify-content: center;
}

nav ul li a {
  display: block;
  padding: 14px 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #4a90d9;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #2a4d6e 100%);
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #4a90d9;
  color: #4a90d9;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
  font-family: 'Open Sans', Arial, sans-serif;
}

.btn:hover {
  background: #4a90d9;
  color: #fff;
}

/* ===== OUR WORK SECTION ===== */
.work-section {
  padding: 60px 0;
  background: #fff;
}

.work-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
  color: #0d1b2a;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  text-align: center;
  overflow: hidden;
}

.work-card-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #1b2838, #2a4d6e);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.work-card:hover .work-card-placeholder {
  transform: scale(1.03);
}

.work-card-placeholder i {
  font-size: 64px;
  color: #4a90d9;
}

.work-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

.work-card:hover img {
  transform: scale(1.03);
}

.work-card-label {
  padding: 15px 0;
}

.work-card-label h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d1b2a;
}

.work-card-label a {
  display: inline-block;
  padding: 10px 30px;
  background: #0d1b2a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #0d1b2a;
  transition: background 0.3s, color 0.3s;
}

.work-card-label a:hover {
  background: #fff;
  color: #0d1b2a;
}

/* ===== ABOUT US SECTION (Home Page) ===== */
.about-section {
  background: #0d1b2a;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.about-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-style: italic;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px;
}

.about-cols {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  text-align: center;
}

.about-cols h4 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-cols p {
  font-size: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #0d1b2a;
}

.services-list {
  font-size: 18px;
  line-height: 2.2;
  color: #333;
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  background: linear-gradient(135deg, #0d1b2a, #2a4d6e);
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.trust-banner h2,
.trust-banner p {
  position: relative;
  z-index: 1;
}

.trust-banner h2 {
  font-size: 36px;
  font-style: italic;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 60px 0;
  background: #fff;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #0d1b2a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 25px;
  text-align: left;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.stars {
  color: #4a90d9;
  font-size: 22px;
  margin-bottom: 10px;
}

.reviewer {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* ===== CONTACT / FREE ESTIMATE SECTION ===== */
.contact-section {
  background: #0d1b2a;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #4a90d9;
}

.contact-sub {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ccc;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #555;
  background: #1b2838;
  color: #fff;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 3px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  border-color: #4a90d9;
  color: #4a90d9;
}

.contact-form .btn:hover {
  background: #4a90d9;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  background: #0a1520;
  color: #ccc;
  padding-top: 50px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1.5;
  min-width: 280px;
}

.footer-about h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-item i {
  color: #4a90d9;
  margin-right: 12px;
  margin-top: 4px;
  width: 18px;
  text-align: center;
}

.footer-item a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1b2838;
  margin-top: 40px;
  padding: 20px;
  text-align: center;
}

.footer-bottom-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-bottom-nav a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-bottom-nav a:hover {
  color: #fff;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

.footer-bottom p a {
  color: #999;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #0d1b2a;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 42px;
  font-style: italic;
}

/* ===== ABOUT PAGE CONTENT ===== */
.about-page-content {
  padding: 50px 20px;
  max-width: 900px;
  text-align: center;
}

.about-page-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.about-page-content h3 {
  font-size: 22px;
  font-weight: 700;
}

/* ===== GALLERY PAGE ===== */
.gallery-category {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.gallery-category h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d1b2a;
  text-align: center;
}

.gallery-placeholder {
  text-align: center;
  padding: 60px 20px;
  background: #f0f3f7;
  border-radius: 6px;
}

.gallery-placeholder i {
  font-size: 48px;
  color: #4a90d9;
  margin-bottom: 15px;
}

.gallery-placeholder p {
  font-size: 16px;
  color: #666;
}

.gallery-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.gallery-grid img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.gallery-prev,
.gallery-next {
  padding: 10px 24px;
  background: #0d1b2a;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.3s;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #2a4d6e;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #4a90d9;
}

#lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-page-section {
  padding: 60px 0;
  background: #fff;
}

.testimonials-page-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.testimonials-blockquotes blockquote {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 25px 30px;
  border-left: 4px solid #4a90d9;
  background: #f9f9f9;
  border-radius: 4px;
}

.testimonials-blockquotes blockquote p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
}

.testimonials-blockquotes cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  font-style: normal;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cols {
    flex-direction: column;
    gap: 30px;
  }

  .site-heading {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: auto;
  }

  nav {
    display: none;
    margin-top: 10px;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li a {
    padding: 12px 20px;
    border-bottom: 1px solid #d0d5dc;
  }

  .header-inner {
    position: relative;
  }

  .logo-icon {
    font-size: 40px;
  }

  .site-heading {
    font-size: 16px;
    margin-left: 12px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 15px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-section h2,
  .about-section h2,
  .services-section h2,
  .testimonials-section h2 {
    font-size: 30px;
  }

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

  .services-list {
    font-size: 15px;
    line-height: 2;
  }

  .trust-banner h2 {
    font-size: 26px;
  }

  .contact-section h2 {
    font-size: 26px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .gallery-grid img {
    max-width: 100%;
    height: 260px;
  }

  .footer-bottom-nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
  .utility-bar a {
    font-size: 11px;
    margin: 0 6px;
  }

  .site-heading {
    font-size: 14px;
  }

  .logo-icon {
    font-size: 34px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 20px;
  }

  .btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}
