/* ------------------------------
   GLOBAL STYLES
------------------------------ */
:root {
  --forest-green: #013220;
  --champagne: #F7E7CE;
  --text-dark: #222;
  --text-light: #f5f5f5;
  --accent: #BFA980;
  --gray-bg: #f9f9f9;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: #fff;
}

/* ------------------------------
   NAVIGATION BAR
------------------------------ */
header {
  background: var(--forest-green);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--champagne);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: var(--champagne);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: var(--forest-green);
  padding: 0.5rem 0;
  list-style: none;
  min-width: 220px;
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--champagne);
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Nav */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--champagne);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--forest-green);
    width: 220px;
    flex-direction: column;
    display: none;
    text-align: left;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 50, 32, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #eee;
}

.btn,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn {
  background: var(--champagne);
  color: var(--forest-green);
}

.btn:hover {
  background: #fff1d6;
}

.btn-secondary {
  border: 2px solid var(--forest-green);
  color: var(--forest-green);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: #fff;
}

/* ------------------------------
   ABOUT PREVIEW
------------------------------ */
.about-preview {
  background: var(--gray-bg);
  text-align: center;
  padding: 4rem 1rem;
}

.about-preview h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--forest-green);
}

.about-preview p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

/* ------------------------------
   WHY CHOOSE US
------------------------------ */
.why-choose-us {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.why-choose-us h2 {
  color: var(--forest-green);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.reason {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reason h3 {
  font-family: 'Playfair Display', serif;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

/* ------------------------------
   SERVICES GRID
------------------------------ */
.services-preview {
  padding: 4rem 1rem;
  background: var(--gray-bg);
  text-align: center;
}

.services-preview h2 {
  font-family: 'Playfair Display', serif;
  color: var(--forest-green);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item h3 {
  color: var(--forest-green);
  font-family: 'Playfair Display', serif;
  margin: 1rem 0 0.5rem;
}

.service-item p {
  padding: 0 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ------------------------------
   CONTACT FORM
------------------------------ */
.contact-form {
  max-width: 700px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--forest-green);
  font-family: 'Playfair Display', serif;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--forest-green);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.contact-form button {
  background: var(--forest-green);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form button:hover {
  background: #025935;
}

/* ------------------------------
/* ================================
   FOOTER STYLES
================================ */
footer {
  background-color: #013220; /* Dark forest green */
  color: #f8e9d2; /* Champagne tone */
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-content .socials {
  margin-top: 0.5rem;
}

.footer-content .socials a {
  color: #f8e9d2;
  text-decoration: none;
  margin: 0 0.4rem;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-content .socials a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0.5rem;
    font-size: 13px;
  }
}
.phone-group {
  margin-top: 1rem;
}

.phone-input {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-input select {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  cursor: pointer;
  width: 35%;
}

.phone-input input[type="tel"] {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.phone-input select:focus,
.phone-input input:focus {
  border-color: #003366;
  outline: none;
}
.phone-input select option {
  padding: 0.5rem;
} 