/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
  --navy: #0a1628;
  --navy2: #112240;
  --red: #c0392b;
  --red2: #e74c3c;
  --gold: #f0a500;
  --white: #ffffff;
  --light: #f5f6fa;
  --gray: #6c757d;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--light);
  color: #222;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== NAVBAR ===== */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav-brand {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--red2) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 60%, #0a1628 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; max-width: 750px; }

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 0 40px rgba(240,165,0,0.3);
  margin-bottom: 28px;
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 6vw, 58px);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero h1 span { color: var(--gold); }

.hero .subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.hero .license {
  display: inline-block;
  background: rgba(240,165,0,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  margin: 14px 0 30px;
  letter-spacing: 1px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(192,57,43,0.4);
}

.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== SECTION SHARED ===== */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title .divider {
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  margin-top: 12px;
  font-size: 16px;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 64px;
}

.about-img-placeholder p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
}

.about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.3;
}

.about-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text h3 span { color: var(--red); }

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

.stat {
  text-align: center;
  background: var(--light);
  padding: 18px 24px;
  border-radius: 8px;
  border-top: 3px solid var(--red);
  flex: 1;
}

.stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--navy);
}

.stat span { font-size: 13px; color: var(--gray); }

/* ===== SERVICES BANNER ===== */
.services { background: var(--light); }

.services-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-banner-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-banner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.service-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-banner-card:hover img {
  transform: scale(1.12);
}

.service-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.55) 45%,
    rgba(10, 22, 40, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 20px;
  transition: background 0.45s ease;
}

.service-banner-card:hover .service-banner-overlay {
  background: linear-gradient(
    to top,
    rgba(192, 57, 43, 0.88) 0%,
    rgba(10, 22, 40, 0.45) 50%,
    rgba(10, 22, 40, 0.15) 100%
  );
}

.service-banner-icon {
  width: 58px;
  height: 58px;
  background: rgba(240, 165, 0, 0.18);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 14px;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.service-banner-card:hover .service-banner-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(240, 165, 0, 0.45);
}

.service-banner-overlay h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: all 0.35s ease;
}

.service-banner-card:hover .service-banner-overlay h3 {
  letter-spacing: 4px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

/* ===== GALLERY ===== */
.gallery { background: var(--navy); }
.gallery .section-title h2 { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy2);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 36px;
  gap: 10px;
}

.gallery-placeholder p {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
}

.upload-note {
  text-align: center;
  margin-top: 28px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.upload-note strong { color: var(--gold); }

/* ===== PAYMENT ===== */
.payment { background: var(--white); }

.payment-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pay-card {
  background: var(--light);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 22px 40px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--navy);
  transition: all 0.3s;
  letter-spacing: 1px;
}

.pay-card:hover {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.free-estimate-banner {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--red), #8b1a1a);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(192,57,43,0.3);
}

.free-estimate-banner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.free-estimate-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* ===== CONTACT ===== */
.contact { background: var(--navy); }
.contact .section-title h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 46px; height: 46px;
  background: rgba(240,165,0,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text { color: rgba(255,255,255,0.8); }
.contact-item-text strong { color: var(--white); display: block; margin-bottom: 3px; font-size: 14px; }
.contact-item-text a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.contact-item-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 36px; }
.contact-form h3 { font-family: 'Oswald', sans-serif; font-size: 22px; color: var(--gold); margin-bottom: 22px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 110px; resize: vertical; }
.form-group select option { background: var(--navy); }

/* ===== FOOTER ===== */
footer {
  background: #040c1a;
  color: rgba(255,255,255,0.7);
  padding: 40px 24px 24px;
  text-align: center;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-logo span { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--white); letter-spacing: 1px; }
.footer-logo span em { color: var(--gold); font-style: normal; }
.footer-divider { width: 60px; height: 2px; background: var(--red); margin: 18px auto; border-radius: 2px; }
.footer p { font-size: 13px; line-height: 1.8; }
.footer-copy { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; }

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 36px;
  right: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.scroll-to-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 0 4px rgba(240,165,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}

.scroll-to-top:hover img {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(0,0,0,0.45), 0 0 0 6px rgba(240,165,0,0.3);
}

.scroll-top-arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(192,57,43,0.5);
  animation: bounceArrow 1.6s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  nav { position: relative; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
}

@media (max-width: 600px) {
  .hero-logo { width: 120px; height: 120px; }
  .services-banner-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 12px; }
  .contact-form { padding: 24px 18px; }
}
