/* ============================================================
   DAYTON CREATIVE HOUSE — Premium Wallpaper Installation
   Color Scheme: Midnight Navy + Gold + White
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:            #0b1a2b;
  --navy-light:      #1a2f4a;
  --navy-lighter:    #2a4563;
  --gray-bg:         #f9f9f9;
  --white:           #ffffff;
  --gold:            #d4af37;
  --gold-dark:       #b9972b;
  --gold-light:      #e5c158;
  --text-dark:       #1a1a1a;
  --text-light:      #ffffff;
  --text-muted:      #999999;
  --border-radius:   8px;
  --transition:      0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:          0 10px 40px rgba(0,0,0,0.20);
  --shadow-card:     0 6px 28px rgba(0,0,0,0.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.8vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  margin-bottom: 1.2rem;
  color: var(--navy);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 0 auto 2.8rem;
  border-radius: 2px;
}

.section-divider.left { margin-left: 0; }

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

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

.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  animation: fadeInUp 0.9s var(--transition) both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.75s; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 6px 32px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo span {
  color: var(--white);
  font-weight: 400;
}

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

nav a {
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

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

nav a:hover,
nav a.active {
  color: var(--white);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--border-radius);
  font-size: 0.82rem !important;
  transition: all var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.30);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-cover.jpg') center center / cover no-repeat;
  overflow: hidden;
  margin-top: 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11,26,43,0.88) 0%,
    rgba(11,26,43,0.72) 50%,
    rgba(11,26,43,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212,175,55,0.18);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--gray-bg);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card-accent {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.service-card-body p {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  flex: 1;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
  background: var(--white);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.why-card {
  text-align: center;
  padding: 2.8rem 2rem;
  border-radius: 12px;
  background: var(--gray-bg);
  border-top: 5px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.why-card h3 {
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.why-card p {
  color: #666;
  font-size: 0.94rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--gray-bg);
  padding: 100px 0;
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-img-badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.76rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.95;
}

.about-text h2 { margin-bottom: 0.6rem; }

.about-text .owner-name {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
}

.about-text p {
  color: #444;
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}

.about-features {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.about-feature::before {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--navy);
  padding: 100px 0;
}

#contact .section-label { color: var(--gold-light); }
#contact .section-title { color: var(--white); }
#contact .section-divider { margin-left: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  margin-top: 3.5rem;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.4rem;
}

.contact-info p {
  color: rgba(255,255,255,0.70);
  font-size: 0.96rem;
  margin-bottom: 2.2rem;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-detail-text a,
.contact-detail-text span {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-detail-text a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--navy-light);
  border-radius: 12px;
  padding: 2.8rem;
  border: 1px solid var(--navy-lighter);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

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

.form-group label {
  display: block;
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}

.form-group label .req {
  color: var(--gold);
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--navy-lighter);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--border-radius);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-size: 0.96rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.30);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  margin-top: 0.6rem;
}

#form-success {
  display: none;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  text-align: center;
  color: var(--white);
  margin-top: 1.2rem;
}

#form-success h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Map */
.map-wrap {
  margin-top: 3.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--navy-light);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  padding: 60px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.81rem;
}

.footer-gold-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin-bottom: 0;
}

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

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 400px; }
  .about-img-badge { right: 0; bottom: -20px; }

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

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

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.8rem;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.45);
    z-index: 999;
  }

  nav.open { right: 0; }

  nav a { font-size: 1rem; }

  .hamburger { display: flex; z-index: 1001; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.8rem; }
}
