/* Import Luxury Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
  --primary-blue: #1A252F;      /* Deep Midnight Blue (Darker) */
  --accent-green: #465C51;      /* Deep Juniper Moss (Darker) */
  --bg-soft-gray: #DDE2E0;      /* Darker Concrete/Pebble Gray (Darker) */
  --text-dark: #1A1A1A;         /* Near Black Charcoal */
  --text-muted: #3D4747;        /* Stronger contrast for muted text */
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Navigation */
.navbar {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-green);
}

/* Hero Section */
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Darker gradient for the Hero area */
  background: linear-gradient(135deg, #DDE2E0 0%, #C8D1CE 100%);
  padding: 0 5%;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
}

.slogan {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--accent-green);
  font-weight: 400;
}

/* Sections */
.section {
  padding: 8rem 10%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-soft {
  max-width: 100%;
  background-color: var(--bg-soft-gray);
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

/* Accent line under headers */
.section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-green);
  margin: 1.5rem auto 0;
}

.intro {
  font-size: 1.25rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  font-weight: 300;
}

/* Services Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top: 4px solid var(--accent-green);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Why List */
.why-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.why-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #C4C4C4;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

/* Custom bullet for Why list */
.why-list li::before {
  content: '→';
  margin-right: 1.5rem;
  color: var(--accent-green);
  font-weight: bold;
}

/* Contact */
.contact {
  text-align: center;
  font-size: 1.1rem;
}

.contact a {
  color: var(--primary-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-green);
  transition: var(--transition);
}

.contact a:hover {
  color: var(--accent-green);
}

/* Footer */
footer {
  padding: 4rem 0;
  text-align: center;
  background: var(--primary-blue);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Contact Wrapper Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-header {
  text-align: left;
}

.contact-header h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-header h2::after {
  margin: 1rem 0 0 0; /* Align accent line to left */
}

.contact-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.direct-contact p {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Form Styling */
.contact-form {
  background: var(--white);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #C4C4C4;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  background-color: #E8EDEB;
  transition: var(--transition);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background-color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--accent-green);
}

/* Why List Refinement */
.why-list li div {
  display: flex;
  flex-direction: column;
}

.why-list li small {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  font-weight: 300;
  line-height: 1.4;
}

.why-list li strong {
  color: var(--primary-blue);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
}