/*
Theme Name: Elvadar Landing Theme
Theme URI: https://www.elvadarbc.com
Author: Elvadar Building Contracting LLC
Author URI: https://www.elvadarbc.com
Description: A lightweight custom landing page theme for Elvadar Building Contracting LLC.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: elvadar
*/

:root {
  --main: #162340;
  --white: #ffffff;
  --light: #f6f8fb;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #c7a66a;
  --shadow: 0 22px 60px rgba(22, 35, 64, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(22, 35, 64, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  min-width: 190px;
}

.brand img {
  width: 184px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 700;
}

.nav a {
  transition: color 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--main);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(199, 166, 106, 0.24);
}

.btn-primary:hover {
  background: #d4b777;
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn-dark:hover {
  background: #1d2f56;
}

.hero {
  min-height: 760px;
  padding: 150px 0 88px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 35, 64, 0.96) 0%, rgba(22, 35, 64, 0.82) 52%, rgba(22, 35, 64, 0.48) 100%),
    url("assets/images/hero-luxury-villa.jpg") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.stat {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-card-mark {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  opacity: 0.92;
}

.hero-card h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.3rem;
}

.hero-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--accent);
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}

.trust-item {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
  color: var(--main);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  color: var(--white);
  background: var(--main);
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2,
h3 {
  margin-top: 0;
  color: var(--main);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-head p,
.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.about-grid,
.value-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 50px;
  align-items: start;
}

.about-panel {
  padding: 34px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--light);
}

.about-panel p {
  margin-top: 0;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.proof-grid,
.why-grid,
.services-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proof-card,
.service-card,
.why-card,
.portfolio-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(22, 35, 64, 0.06);
}

.proof-card,
.why-card {
  padding: 26px;
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--main);
  font-size: 1.9rem;
  line-height: 1;
}

.proof-card span,
.why-card p,
.service-card p,
.portfolio-card p {
  color: var(--muted);
}

.service-card {
  overflow: hidden;
}

.service-visual {
  min-height: 180px;
  background: var(--main) center / cover no-repeat;
}

.service-construction {
  background-image: url("assets/images/service-construction.jpg");
}

.service-fitout {
  background-image: url("assets/images/service-fitout.jpg");
}

.service-renovation {
  background-image: url("assets/images/service-renovation.jpg");
}

.service-content {
  padding: 28px;
}

.service-content ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-content li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.why-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--main);
  background: rgba(199, 166, 106, 0.22);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.value-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.value-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-image {
  min-height: 230px;
  background: var(--main) center / cover no-repeat;
}

.project-luxury-villa {
  background-image: url("assets/images/project-luxury-villa.jpg");
}

.project-villa-interior {
  background-image: url("assets/images/project-villa-interior.jpg");
}

.project-kitchen-interior {
  background-image: url("assets/images/project-kitchen-interior.jpg");
}

.portfolio-content {
  padding: 24px;
}

.cta-band {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 35, 64, 0.96), rgba(22, 35, 64, 0.88)),
    url("assets/images/hero-luxury-villa.jpg") center / cover no-repeat;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--white);
}

.contact-card {
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: var(--main);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--main);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 4px rgba(22, 35, 64, 0.08);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-message {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-message.success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111b31;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.84rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(199, 166, 106, 0.12);
}

.footer-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.floating-whatsapp {
  position: fixed;
  z-index: 1001;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.34);
  font-weight: 900;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--main);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-grid,
  .about-grid,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-items,
  .proof-grid,
  .why-grid,
  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .header-actions {
    width: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .trust-items,
  .proof-grid,
  .why-grid,
  .services-grid,
  .portfolio-grid,
  .process,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .hero-card,
  .about-panel,
  .contact-card {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-brand img {
    width: 150px;
  }
}
