/* =========================================
   GLOBAL RESET
========================================= */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* =========================================
   HEADER
========================================= */
.header {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #f4d03f;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #f4d03f;
  text-shadow:
    0 0 4px rgba(244,208,63,0.45),
    0 0 8px rgba(244,208,63,0.35),
    0 0 12px rgba(244,208,63,0.25);
}

/* NAVIGATION */
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav ul li a {
  color: #f4d03f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav ul li a:hover {
  color: #ffe680;
}

/* =========================================
   MOBILE MENU (FIXED + CLEAN)
========================================= */
.mobile-menu-btn {
  display: none;
  font-size: 34px;
  color: #f4d03f;
  cursor: pointer;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right 0.35s ease, opacity 0.35s ease;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
}

.mobile-menu-panel.active {
  right: 0;
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-panel .close-btn {
  font-size: 34px;
  color: #f4d03f;
  cursor: pointer;
  align-self: flex-end;
}

.mobile-menu-panel a {
  font-size: 20px;
  color: #f4d03f;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =========================================
   HERO — PREMIUM EFFECT PACKAGE
========================================= */
.hero {
  position: relative;
  height: 420px;
  background: url('assets/images/denny-hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* SUNRISE SHIFT */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  animation: sunriseShift 14s ease-in-out infinite alternate;
}

@keyframes sunriseShift {
  0% {
    background: linear-gradient(to bottom,
      rgba(255,150,30,0.55),
      rgba(255,110,20,0.35),
      rgba(0,0,0,0.55));
  }
  50% {
    background: linear-gradient(to bottom,
      rgba(255,200,80,0.55),
      rgba(255,150,40,0.35),
      rgba(0,0,0,0.55));
  }
  100% {
    background: linear-gradient(to bottom,
      rgba(255,180,60,0.55),
      rgba(255,130,30,0.35),
      rgba(0,0,0,0.55));
  }
}

/* SOLAR SHIMMER */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    75deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 45%,
    rgba(255,255,255,0) 90%
  );
  transform: translateX(-120%);
  animation: solarShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes solarShimmer {
  0% { transform: translateX(-120%); opacity: 0; }
  40% { opacity: 0.35; }
  60% { opacity: 0.35; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* SUN FLARE */
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 160%;
  height: 160%;
  z-index: 2;
  background: radial-gradient(
    circle at top left,
    rgba(255,200,120,0.35),
    rgba(255,160,60,0.15),
    rgba(255,120,40,0.05),
    transparent 70%
  );
  transform: rotate(-18deg);
  animation: flarePulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes flarePulse {
  0% { opacity: 0.25; transform: rotate(-18deg) scale(1); }
  100% { opacity: 0.45; transform: rotate(-18deg) scale(1.08); }
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow:
    0 4px 14px rgba(0,0,0,0.55),
    0 0 18px rgba(255,180,60,0.35);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* ELECTRIC SPARK UNDERLINE */
.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(255,204,0,0.2),
    rgba(255,204,0,1),
    rgba(255,204,0,0.2)
  );
  border-radius: 50px;
}

.hero-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 40px;
  background: #fff;
  border-radius: 50px;
  filter: blur(2px);
  animation: sparkMove 2.4s linear infinite;
}

@keyframes sparkMove {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  50% { left: 60%; opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* =========================================
   PARALLAX FOG — 3 LAYERS (C3)
========================================= */
.hero .fog-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160%;
  height: 55%;
  background: radial-gradient(
    circle at bottom,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.08),
    transparent 70%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 2;
}

/* Layer 1 — Slow */
.fog-layer.layer1 {
  animation: fogDrift1 18s ease-in-out infinite alternate;
  opacity: 0.45;
}

@keyframes fogDrift1 {
  0% { transform: translateX(-10%); opacity: 0.35; }
  50% { transform: translateX(10%); opacity: 0.5; }
  100% { transform: translateX(-5%); opacity: 0.38; }
}

/* Layer 2 — Medium */
.fog-layer.layer2 {
  animation: fogDrift2 12s ease-in-out infinite alternate;
  opacity: 0.40;
}

@keyframes fogDrift2 {
  0% { transform: translateX(-15%); opacity: 0.3; }
  50% { transform: translateX(12%); opacity: 0.45; }
  100% { transform: translateX(-8%); opacity: 0.32; }
}

/* Layer 3 — Fast */
.fog-layer.layer3 {
  animation: fogDrift3 8s ease-in-out infinite alternate;
  opacity: 0.35;
}

@keyframes fogDrift3 {
  0% { transform: translateX(-20%); opacity: 0.25; }
  50% { transform: translateX(15%); opacity: 0.4; }
  100% { transform: translateX(-10%); opacity: 0.28; }
}

/* =========================================
   SECTIONS
========================================= */
.section {
  padding: 60px 0;
}

.section.dark {
  background: #222;
  color: #fff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* PHOTO GALLERY */
.photo-gallery {
  margin: 40px 0;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.2s ease;
}

.photo-gallery img:hover {
  transform: scale(1.03);
}

/* =========================================
   QUOTE FORM
========================================= */
.quote-section {
  padding: 80px 20px;
  background: #0c0c0c;
  color: #fff;
  text-align: center;
}

.quote-form {
  max-width: 780px;
  margin: auto;
  padding: 40px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: flex;
  gap: 22px;
}

.input-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-box label {
  margin-bottom: 8px;
  font-size: 15px;
  color: #f4d03f;
  font-weight: 600;
}

.input-box input,
.input-box select,
.input-box textarea {
  padding: 16px 20px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #fff;
  font-size: 16px;
  border-radius: 14px;
}

.input-box textarea {
  height: 160px;
  resize: none;
}

.quote-btn {
  padding: 18px;
  background: #f4d03f;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
}

.quote-btn:hover {
  background: #ffe680;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-nav a:hover {
  color: #f4d03f;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .logo img { height: 40px; }
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; }
  .hero-title { font-size: 2rem; }
}

@media (max-width: 600px) {
  .hero { height: 360px; }
}

/* =========================================
   CALL NOW BUTTON (MOBILE)
========================================= */
.call-now-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffcc00;
  color: #000;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}

@media (max-width: 768px) {
  .call-now-btn { display: block; }
}

/* =========================================
   FLOATING QUOTE BUTTON
========================================= */
.quote-float-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #ffcc33;
  color: #111;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  z-index: 9999;
  box-shadow:
    0 0 6px rgba(255,204,51,0.6),
    0 0 12px rgba(255,204,51,0.4);
  transition: 0.3s ease;
}

.quote-float-btn:hover {
  background: #ffd84d;
  box-shadow:
    0 0 10px rgba(255,204,51,0.9),
    0 0 18px rgba(255,204,51,0.7);
}

@media (max-width: 600px) {
  .quote-float-btn {
    bottom: 85px;
    right: 15px;
    font-size: 15px;
    padding: 12px 20px;
  }
}

.hero-cta {
  padding: 16px 34px;
  background: linear-gradient(135deg, #ffcc00, #ffdb4d);
  color: #000;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.15rem;
   bottom: 90px;

  box-shadow:
    0 0 12px rgba(255,204,0,0.7),
    0 0 24px rgba(255,204,0,0.5),
    0 0 36px rgba(255,204,0,0.3);

  transition: 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 16px rgba(255,204,0,1),
    0 0 32px rgba(255,204,0,0.8),
    0 0 48px rgba(255,204,0,0.6);
}
.hero-subtitle {
  margin-bottom: 18px;
}

.hero-buttons {
  margin-top: 28px;
}


