:root {
  /* Color Palette */
  --primary-green: #D4AF37;
  --secondary-gold: #D4AF37;
  --gold-hover: #b8962b;
  --light-blue-bg: #EAF6FB;
  --white: #FFFFFF;
  --light-grey: #F5F7FA;
  --dark-text: #2EAD6B;
  --muted-text: #258f58;
  --border-color: #E2E8F0;
  /* Typography */
  --font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* Spacing & Layout */
  --max-width: 1200px;
  --padding-x: 2rem;
  --padding-y: 4rem;
  /* Transitions */
  --transition: all 0.3s ease;
}
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-family);
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
p {
  color: var(--muted-text);
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: var(--dark-text);
  transition: var(--transition);
}
a:hover {
  color: var(--secondary-gold);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}
.section {
  padding: var(--padding-y) 0;
}
.bg-light {
  background-color: var(--light-grey);
}
.bg-blue-light {
  background-color: var(--light-blue-bg);
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-family);
  font-size: 1rem;
}
.btn-primary {
  background-color: var(--secondary-gold);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(46, 173, 107, 0.2);
}
.btn-primary:hover {
  background-color: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(46, 173, 107, 0.3);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
}
/* Header & Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span {
  color: var(--secondary-gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-gold);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--secondary-gold);
}
.nav-links a.btn {
  color: var(--white);
}
.nav-links a.btn.active {
  color: var(--white);
  background-color: var(--secondary-gold);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 3px;
  transition: var(--transition);
}
/* Footer */
.footer {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-gold);
}
.footer-col p {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col a {
  color: var(--white);
}
.footer-col a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}
.social-links a:hover {
  background-color: var(--secondary-gold);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.875rem;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--white) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--muted-text);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
/* Trust Row */
.trust-row {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 2rem 0;
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-item svg {
  width: 32px;
  height: 32px;
  fill: var(--secondary-gold);
}
.trust-item span {
  font-weight: 600;
  font-size: 1.1rem;
}
/* Services Preview */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.card:hover, .card.active {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.card:hover::before, .card.active::before {
  transform: scaleX(1);
}
.card.active {
  border: 2px solid var(--secondary-gold);
}
.card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--white);
  border: 2px solid var(--secondary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary-gold);
}
.card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.card h3 {
  margin-bottom: 1rem;
}
/* Service Area */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.service-area-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.service-area-list li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: bold;
}
/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.process-step {
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}
/* Forms */
.form-container {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--light-grey);
}
.form-control:focus {
  outline: none;
  border-color: var(--dark-text);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.checkbox-group input {
  margin-top: 5px;
}
.checkbox-group label {
  font-size: 0.9rem;
  color: var(--muted-text);
}
/* Contact Box */
.contact-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.contact-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-blue-bg);
  border-radius: 12px;
}
.contact-item svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-blue);
  margin-bottom: 1rem;
}
/* Legal Pages */
.legal-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.legal-section {
  margin-bottom: 4rem;
}
.legal-section h2 {
  border-bottom: 2px solid var(--light-grey);
  padding-bottom: 1rem;
  margin-top: 3rem;
}
.legal-section h3 {
  margin-top: 2rem;
}
/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
/* Form Messages */
.form-message {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: none;
  font-weight: 500;
}
.form-message.success {
  background-color: rgba(46, 173, 107, 0.1);
  color: var(--secondary-gold);
  border: 1px solid var(--secondary-gold);
  display: block;
}
.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid #dc3545;
  display: block;
}
.error-text {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .service-area-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .logo {
    font-size: 1.1rem;
  }
  .logo img {
    height: 30px !important;
    margin-right: 4px !important;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .trust-grid {
    flex-direction: column;
    align-items: center;
  }
}