/* ============================================================
   ELEVATE YOUR SPACE — Redesigned Stylesheet
   Aesthetic: Luxury-editorial, warm teal + cream + gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:      #003249;
  --teal:      #007EA7;
  --teal-lt:   #9AD1D4;
  --teal-pale: #ccdfe1;
  --cream:     #F7F3EE;
  --warm-off:  #EDE8E1;
  --gold:      #C9A84C;
  --gold-lt:   #E8D5A3;
  --white:     #FFFFFF;
  --text-dark: #1a2e38;
  --text-mid:  #3a5a6a;
  --shadow-sm: 0 2px 12px rgba(0,50,73,0.08);
  --shadow-md: 0 8px 32px rgba(0,50,73,0.12);
  --shadow-lg: 0 20px 60px rgba(0,50,73,0.16);
  --radius:    12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--cream);
  color: var(--text-dark);
  padding-top: 130px;
  min-width: 320px;
  overflow-x: hidden;
}

/* ── Scroll-reveal animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ───────────────────────────────────────────────── */
header {
  background: var(--white);
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,50,73,0.08), var(--shadow-sm);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
}

header img.logo {
  height: 52px;
  width: auto;
}

/* ── Navigation ───────────────────────────────────────────── */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  overflow: visible;
}

nav li { display: inline-block; }

nav li a, nav .dropbtn {
  display: inline-block;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
}

nav li a:hover,
nav .dropdown:hover .dropbtn,
nav li a.active {
  background: var(--teal-pale);
  color: var(--teal);
}

nav li.dropdown { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--teal-pale);
  overflow: hidden;
  z-index: 2000;
}

.dropdown-content a {
  color: var(--text-dark);
  padding: 11px 18px;
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}

.dropdown-content a:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile nav ───────────────────────────────────────────── */
@media (max-width: 768px) {
  body { padding-top: 80px; }

  .hamburger { display: flex; }

  nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px 24px 40px;
    overflow-y: auto;
    z-index: 999;
  }
  nav.open { display: block; }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  nav li, nav li.dropdown { display: block; width: 100%; }
  nav li a, nav .dropbtn {
    display: block;
    width: 100%;
    padding: 14px 8px;
    font-size: 1rem;
    border-bottom: 1px solid var(--teal-pale);
    border-radius: 0;
  }
  .dropdown-content {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-left: 3px solid var(--teal-lt);
    margin-left: 16px;
    margin-bottom: 8px;
  }
  .dropdown-content a { padding: 10px 16px; font-size: 0.9rem; }
}

/* ── Sections base ────────────────────────────────────────── */
section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 600px) {
  section { padding: 0 16px; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 60px;
  overflow: hidden;
  height: min(70vh, 620px);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,50,73,0.72) 0%,
    rgba(0,126,167,0.32) 60%,
    rgba(201,168,76,0.15) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.hero-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-overlay h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-overlay p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  letter-spacing: 0.03em;
}

.hero-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

/* ── Section headings ─────────────────────────────────────── */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

/* ── Services grid ────────────────────────────────────────── */
.services_section {
  padding: 60px 32px;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services_container {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .services_container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services_container { grid-template-columns: 1fr; }
  .services_section { padding: 40px 16px; }
}

.service_item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,50,73,0.06);
}

.service_item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service_item-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service_item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service_item:hover .service_item-img img {
  transform: scale(1.06);
}

.service_item-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service_item-body h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service_item-body figcaption {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.service_item button, .btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  align-self: flex-start;
}

.service_item button:hover, .btn:hover {
  background: transparent;
  color: var(--navy);
}

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

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

/* ── About ────────────────────────────────────────────────── */
.about_section {
  padding: 80px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

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

@media (max-width: 900px) {
  .about_inner { grid-template-columns: 1fr; gap: 36px; }
  .about_section { padding: 48px 16px; }
}

.about_text p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about_text p strong {
  color: var(--navy);
  font-weight: 600;
}

.about_text .regions {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--warm-off);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.about_visual {
  position: relative;
}

.about_visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about_visual::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* ── Consultation CTA ─────────────────────────────────────── */
.consultation_section {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
  max-width: 100%;
  margin: 60px 0;
}

.consultation_section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.consultation_section p {
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 16px auto 36px;
  font-size: 1rem;
}

.consultation_section .btn-gold {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials_section {
  padding: 80px 32px;
  background: var(--warm-off);
  max-width: 100%;
  margin: 0 0 60px;
}

.testimonials_inner {
  max-width: 1320px;
  margin: 0 auto;
}

.testimonials_header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .testimonials_grid { grid-template-columns: 1fr; }
  .testimonials_section { padding: 48px 16px; }
}

.testimonial_card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--teal-lt);
}

.testimonial_card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--teal-pale);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}

.testimonial_card p {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-top: 20px;
}

.testimonial_card .author {
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 0.05em;
}

/* ── Project Gallery ──────────────────────────────────────── */
.gallery_section {
  padding: 60px 32px;
}

.gallery_header {
  text-align: center;
  margin-bottom: 48px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .row { grid-template-columns: 1fr; }
  .gallery_section { padding: 40px 16px; }
}

.column { display: flex; flex-direction: column; gap: 16px; }

.column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.column img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact_section {
  padding: 80px 32px;
}

.contact_inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .contact_inner { padding: 32px 20px; }
  .contact_section { padding: 48px 16px; }
}

.contact_inner h2 { margin-bottom: 8px; }
.contact_inner > p { color: var(--text-mid); margin-bottom: 32px; font-size: 0.97rem; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--teal-pale);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,126,167,0.12);
  background: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), color var(--transition);
}

.form-submit:hover {
  background: transparent;
  color: var(--navy);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  margin-top: 0;
}

.footer_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 700px) {
  .footer_inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px; }
}

.footer_certs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.cert_item {
  width: 80px;
}

.cert_item img {
  width: 100%;
  height: auto;
  transition: opacity var(--transition);
  opacity: 0.85;
}

.cert_item img:hover { opacity: 1; }

.footer_info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 12px;
}

.footer_info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer_info p strong { color: rgba(255,255,255,0.85); }

.footer_divider {
  max-width: 1320px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer_copy {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 32px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── Decorative gold line divider ─────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 200px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.gold-divider span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: block;
}
