/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
  border-bottom: 1px solid #444;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #d4af37; /* Gold hover */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #000, #111);
}

.hero h1 {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn.gold {
  background-color: #d4af37;
  color: #000;
}

.btn.black {
  background-color: #000;
  color: #d4af37;
  border: 1px solid #d4af37;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
  font-size: 14px;
}
/* Services Section */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h1 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #111;
  border: 1px solid #333;
  padding: 30px;
  width: 280px;
  border-radius: 8px;
  color: #fff;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.service-card img {
  height: 60px;
  margin-bottom: 20px;
}

.service-card h2 {
  color: #d4af37;
  margin-bottom: 10px;
}
/* Portal Section */
.portal {
  padding: 80px 20px;
  max-width: 500px;
  margin: auto;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
}

.portal h1 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 30px;
}

#loginForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#loginForm label {
  font-weight: bold;
  color: #d4af37;
}

#loginForm input[type="email"],
#loginForm input[type="file"] {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
}

#loginForm input[type="checkbox"] {
  margin-right: 10px;
}

#loginForm a {
  color: #d4af37;
  text-decoration: underline;
}
/* Terms Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background-color: #111;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  color: #fff;
  text-align: center;
  border: 1px solid #d4af37;
}

.popup-content h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.popup-content p {
  margin-bottom: 30px;
}
/* About Section */
.about {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
}

.about h1 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
}

.about h2 {
  font-size: 28px;
  color: #d4af37;
  margin-top: 40px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about ul {
  list-style: none;
  padding-left: 0;
}

.about li {
  margin-bottom: 15px;
  font-size: 18px;
}

.about li strong {
  color: #d4af37;
}
/* Terms Section */
.terms {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
}

.terms h1 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
}

.terms h2 {
  font-size: 28px;
  color: #d4af37;
  margin-top: 40px;
  margin-bottom: 20px;
}

.terms p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms ul {
  list-style: none;
  padding-left: 0;
}

.terms li {
  margin-bottom: 15px;
  font-size: 18px;
}

.terms li strong {
  color: #d4af37;
}
.home-banner {
  text-align: center;
  margin-top: 20px;
}
.full-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 2px solid #d4af37;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
nav#calculator-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

nav#calculator-tabs button {
  flex: 1;
  padding: 12px 18px;
  font-weight: bold;
  border: none;
  background: #eee;
  color: #333;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

nav#calculator-tabs button.active {
  background: #fff;
  border: 2px solid #d4af37;
  color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.hero h1 {
  font-size: 3rem; /* Large and bold */
  color: #f5f5f5; /* Light text */
  font-family: 'Montserrat', sans-serif; /* Clean, modern font */
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}
.hero {
  background-color: #1a1a1a; /* Deep charcoal */
  padding: 60px 20px;
}
.hero p {
  color: #cccccc;
  font-size: 1.2rem;
  text-align: center;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #f5f5f5;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero {
  background-color: #1a1a1a;
  padding: 60px 20px;
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  color: #cccccc;
  font-size: 1.2rem;
  text-align: center;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;              /* Bigger and bolder */
  font-weight: 600;
  color: #f5f5f5;               /* Light text */
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;         /* Keep natural casing */
}
.hero h1 {
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: 'Raleway', sans-serif; /* or 'Poppins' */
  font-size: 4rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero {
  background-color: #1a1a1a;
  padding: 80px 20px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif; /* Or 'Poppins' if you prefer */
  font-size: 4rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero h1 {
  text-transform: uppercase;
  font-size: 4.5rem;
  font-weight: 700;
}
.gold-text {
  color: #d4af37; /* Gold */
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  background-color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  flex-wrap: wrap;
}

.feature-block {
  background-color: #2a2a2a;
  padding: 30px 20px;
  border-radius: 10px;
  width: 280px;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-5px);
}

.feature-block i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.feature-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-block p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #cccccc;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn.gold {
  background-color: #d4af37;
  color: #1a1a1a;
}

.btn.gold:hover {
  background-color: #f5d76e;
  color: #000000;
}

.btn.black {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn.black:hover {
  background-color: #333333;
  color: #d4af37;
  border-color: #d4af37;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Gold Button */
.btn.gold {
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
}

.btn.gold:hover {
  background-color: #f5d76e;
  color: #000000;
  box-shadow: 0 0 10px #f5d76e;
}

/* Black Button */
.btn.black {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn.black:hover {
  background-color: #333333;
  color: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 0 10px #d4af37;
}
/* Header Base */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 20px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  height: 40px;
}

/* Navigation */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 1.5rem;
  color: #1a1a1a;
  cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  #menu-toggle:checked + .menu-icon + .nav-links ul {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .nav-links ul li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
}


.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.nav-links a {
  margin-left: 25px;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}
.site-header {
  padding: 6px 20px;
  height: 50px;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 30px;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Base Header Styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 20px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  height: 40px;
}

/* Navigation Links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hamburger Icon */
.menu-icon {.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 20px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  height: 40px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
/* Base Header Styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 20px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  height: 40px;
}

/* Navigation Links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 1.5rem;
  color: #1a1a1a;
  cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .nav-links ul li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
}
/* Header Base */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 20px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  height: 40px;
}

/* Navigation */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hamburger Icon */
/* Hide hamburger icon by default (desktop) */
.menu-icon {
  display: none;
}

/* Show hamburger icon only on mobile */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
}


/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .nav-links ul li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
}

/* Header Base */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #1a1a1a);
  padding: 8px 20px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  height: 40px;
}

/* Navigation */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hide hamburger icon by default (desktop) */
.menu-icon {
  display: none;
}

/* Show hamburger icon only on mobile */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
  }
}


/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .nav-links ul li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }

  /* Hide desktop nav layout */
  .nav-links ul {
    display: none;
  }

  #menu-toggle:checked + .menu-icon + .nav-links ul {
    display: flex;
  }
}
.about-hero {
  background: url('assets/img/about-banner.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
/* General Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Raleway', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 30px;
}
.site-logo {
  height: 50px;
}
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.nav-links a.active {
  border-bottom: 2px solid #d4af37;
}

/* Hero Banner */
.hero-banner {
  background: #111 url('assets/img/services-banner.jpg') no-repeat center center;
  background-size: cover;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}
.hero-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
}
.hero-banner p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Services Section */
.services-section {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
}
.services-section h2 {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 40px;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.service-card {
  background: #222;
  border: 2px solid #d4af37;
  padding: 20px;
  width: 250px;
  text-align: center;
  border-radius: 8px;
}
.service-card i {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

/* Why Choose Us */
.why-choose-us {
  background: #111;
  color: #fff;
  padding: 40px 20px;
}
.why-choose-us h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
}
.why-choose-us ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.why-choose-us li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Client Portal */
.client-portal {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.client-portal h2 {
  color: #d4af37;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
}

.services-section h2 {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 40px;
}

/* Flexbox Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* spacing between cards */
}

.service-card {
  flex: 1 1 calc(25% - 30px); /* 4 per row on desktop */
  max-width: 300px;
  background: #222;
  border: 2px solid #d4af37;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #d4af37;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .service-card {
    flex: 1 1 calc(50% - 30px); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 1 1 100%; /* 1 per row on mobile */
    max-width: 100%;
  }
}
/* Services Section */
.services-section {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
}

.services-section h2 {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 40px;
}

/* Flexbox Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* spacing between cards */
}

.service-card {
  flex: 1 1 calc(25% - 30px); /* 4 per row on desktop */
  max-width: 300px;
  background: #222;
  border: 2px solid #d4af37;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #d4af37;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .service-card {
    flex: 1 1 calc(50% - 30px); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 1 1 100%; /* 1 per row on mobile */
    max-width: 100%;
  }
}


/* Header Ribbon */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;              /* same dark background as Home */
  padding: 15px 30px;
  border-bottom: 2px solid #d4af37; /* gold accent line */
}

.site-logo {
  height: 50px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active {
  border-bottom-color: #d4af37; /* gold underline for active page */
}

.nav-links a:hover {
  color: #d4af37; /* gold hover effect */
}

/* Hero Banner */
.hero-banner {
  position: relative;
  background: url('assets/img/services-banner.jpg') no-repeat center center;
  background-size: cover;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6); /* dark overlay */
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #d4af37; /* gold headline */
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
}
/* Header (Navigation Ribbon) */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #111;                  /* dark background */
  border-bottom: 2px solid #d4af37;  /* gold accent line */
}

.site-logo {
  height: 48px;
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;                       /* white text for contrast */
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;                    /* gold hover effect */
}

.nav-links a.active {
  border-bottom-color: #d4af37;      /* gold underline for active page */
}

/* Hero Banner */
.hero-banner {
  position: relative;
  background: url('assets/img/services-banner.jpg') center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);       /* darker overlay for readability */
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin: 0 0 10px;
  color: #d4af37;                    /* gold headline */
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;                       /* lighter subtext */
}

/* Sections */
section {
  padding: 50px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
/* Header Ribbon */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #111;                  /* dark background */
  border-bottom: 2px solid #d4af37;  /* gold accent line
  .site-logo {
  height: 48px;   /* adjust size to fit your ribbon */
}
.logo {
  display: flex;
  align-items: center;
}
/* Header Ribbon (same as Services) */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #111;                  /* dark background */
  border-bottom: 2px solid #d4af37;  /* gold accent line */
}

.site-logo {
  height: 48px;                      /* adjust logo size */
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;                       /* white text */
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;                    /* gold hover effect */
}

.nav-links a.active {
  border-bottom-color: #d4af37;      /* gold underline for active page */
}

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.popup-content {
  background: #111;
  border: 2px solid #d4af37;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  text-align: center;
  color: #fff;
}
.popup-content h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 20px;
}
.popup-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.popup-content li {
  margin: 10px 0;
}
/* Chatbot styles */
.wo-chatbot { position: fixed; bottom: 20px; right: 20px; z-index: 1000; }
.wo-chat-toggle {
  background: #d4af37; color: #111; border: none; border-radius: 24px;
  padding: 10px 16px; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.4); cursor: pointer;
}
.wo-chat-panel {
  position: fixed; bottom: 70px; right: 20px; width: 320px; max-height: 60vh;
  background: #111; border: 2px solid #d4af37; border-radius: 10px; display: none; flex-direction: column;
}
.wo-chat-panel.open { display: flex; }
.wo-chat-header { display: flex; align-items: center; gap: 8px; padding: 10px; border-bottom: 1px solid #d4af37; color: #fff; }
.wo-chat-header img { height: 20px; }
.wo-chat-log { flex: 1; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.wo-msg { padding: 8px 10px; border-radius: 8px; font-size: 0.95rem; line-height: 1.4; }
.wo-msg.assistant { background: #1d1d1d; color: #fff; border: 1px solid #2a2a2a; }
.wo-msg.user { background: #222; color: #d4af37; border: 1px solid #333; align-self: flex-end; }
.wo-chat-form { display: flex; border-top: 1px solid #222; }
.wo-chat-form input { flex: 1; background: #1d1d1d; border: none; color: #fff; padding: 10px; }
.wo-chat-form button { background: #d4af37; color: #111; border: none; padding: 10px 14px; font-weight: 700; cursor: pointer; }
.wo-disclaimer { font-size: 0.75rem; color: #bbb; padding: 8px 10px; border-top: 1px solid #222; }

/* Mobile tweak */
@media (max-width: 600px) {
  .wo-chat-panel { right: 10px; width: 92vw; }
}
.virtual-agent { background:#111; padding: 30px 20px; border-top: 2px solid #d4af37; text-align:center; }
.agent-title { font-family: 'Playfair Display', serif; color:#d4af37; margin-bottom:8px; }
.agent-desc { color:#ccc; margin-bottom:18px; }
.agent-form { max-width:600px; margin:0 auto; display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.agent-form input, .agent-form select { background:#1d1d1d; border:1px solid #444; color:#fff; border-radius:4px; padding:10px; }
.agent-form button { grid-column: 1 / -1; }
.agent-confirm { margin-top:12px; color:#eaeaea; }
@media (max-width: 700px){ .agent-form { grid-template-columns: 1fr; } }
.estate-flow { background:#151515; border-top:2px solid #d4af37; padding:30px 20px; }
.flow-title { font-family:'Playfair Display', serif; color:#d4af37; text-align:center; margin-bottom:16px; }
.flow-steps { max-width:800px; margin:0 auto; color:#eaeaea; line-height:1.6; }
.flow-steps li { margin-bottom:10px; }
.flow-note { text-align:center; color:#bbb; margin-top:12px; }
.portal-horizontal {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #111;
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
}

.feature-block {
  flex: 1;
  max-width: 280px;
  text-align: center;
  color: #eaeaea;
}

.feature-block i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 12px;
}

.feature-block h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 8px;
}

.feature-block p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .portal-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.portal h1 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 40px;
  border-bottom: 3px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}
.portal-horizontal {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #111;
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
}
.feature-block {
  flex: 1;
  max-width: 280px;
  text-align: center;
  color: #eaeaea;
}
.feature-block i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 12px;
}
.feature-block h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 8px;
}
.feature-block p { font-size: 0.95rem; color: #ccc; }

/* Mobile */
@media (max-width: 768px) {
  .portal-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.portal-header {
  background: #151515;
  border: 2px solid #d4af37;
  padding: 30px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.portal-header h1 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.portal-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 10px;
  letter-spacing: 1px;
}
/* General */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: #0f0f0f;
  color: #eaeaea;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #111;
  border-bottom: 2px solid #d4af37;
}
.logo img {
  height: 48px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
nav a:hover {
  color: #d4af37;
}
nav a.active {
  border-bottom-color: #d4af37;
}

/* Portal Section */
.portal {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}
.portal-header h1 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 10px;
}
.portal-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}
.welcome {
  font-size: 1.2rem;
  color: #d4af37;
  margin: 20px 0;
}
.status {
  font-size: 1rem;
  color: #eaeaea;
  margin-bottom: 30px;
}

/* Features */
.portal-horizontal {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #111;
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
}
.feature-block {
  flex: 1;
  max-width: 280px;
  text-align: center;
  color: #eaeaea;
}
.feature-block i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 12px;
}
.feature-block h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 8px;
}
.feature-block p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Dashboard Links */
.dashboard-links {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.dashboard-links li {
  margin: 10px 0;
}
.dashboard-links a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}
.dashboard-links a.btn.gold {
  display: inline-block;
  background: #d4af37;
  color: #111;
  padding: 10px 20px;
  border-radius: 4px;
}

/* Buttons */
.btn.gold {
  background: #d4af37;
  color: #111;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 10px;
}
.contact-form p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #ccc;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #1d1d1d;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
}
.contact-form button {
  background: #d4af37;
  color: #111;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Virtual Agent */
.virtual-agent {
  background: #111;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #d4af37;
}
.virtual-agent h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 10px;
}
.virtual-agent p {
  color: #ccc;
  margin-bottom: 20px;
}
.agent-form input,
.agent-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #1d1d1d;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
}
.agent-form button {
  background: #d4af37;
  color: #111;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.agent-confirm {
  margin-top: 20px;
  color: #d4af37;
  font-weight: 600;
}

/* Chatbot */
.wo-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.wo-chat-toggle {
  background: #d4af37;
  color: #111;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
.wo-chat-panel {
  display: none;
  flex-direction: column;
  background: #1d1d1d;
  border: 1px solid #444;
  border-radius: 8px;
  width: 300px;
  height: 400px;
  position: absolute;
  bottom: 50px;
  right: 0;
}
.wo-chat-panel.open {
  display: flex;
}
.wo-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  padding: 10px;
  border-bottom: 1px solid #444;
  color: #d4af37;
}
.wo-chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  font-size: 0.9rem;
}
.wo-chat-form {
  display: flex;
  border-top: 1px solid #444;
}
.wo-chat-form input {
  flex: 1;
  padding: 8px;
  background: #0f0f0f;
  border: none;
  color: #fff;
}
.wo-chat-form button {
  background: #d4af37;
  color: #111;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}
.wo-disclaimer {
  font-size: 0.75rem;
  color: #888;
  padding: 8px;
  text-align: center;
}

/* Footer */
footer {
  background: #111;
  color: #cfcfcf;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .portal-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .wo-chat-panel {
    width: 90%;
    right: 5%;
  }
}
