/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a3544;
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #b8995c;
  text-decoration: underline;
}

.btn-accept {
  background: #b8995c;
  color: white;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-accept:hover {
  background: #a8884c;
}

/* Navigation - REDUCED WHITESPACE */
.nav {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 15px; /* REDUCED from original (~30-40px) */
}

.nav-menu li a {
  color: #555;
  font-weight: 500;
  padding: 8px 12px; /* REDUCED padding */
  display: block;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #b8995c;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 20px;
  min-width: 600px;
  display: none;
  margin-top: 10px;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #b8995c;
}

.dropdown-header a {
  font-weight: 700;
  color: #333;
  font-size: 18px;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dropdown-column h4 {
  color: #b8995c;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-column ul {
  list-style: none;
}

.dropdown-column ul li {
  margin-bottom: 8px;
}

.dropdown-column ul li a {
  color: #555;
  padding: 4px 0;
  font-size: 14px;
}

.dropdown-column ul li a:hover {
  color: #b8995c;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2a3544 0%, #3d4e61 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-primary {
  background: #b8995c;
  color: white;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #a8884c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 153, 92, 0.3);
}

.hero-compliance {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2a3544;
}

.section-subtitle {
  font-size: 18px;
  color: #777;
}

/* About Section */
.about-section {
  padding: 100px 20px;
  background: white;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.credential-item {
  padding: 30px;
  background: #f9fbfb;
  border-left: 4px solid #b8995c;
}

.credential-item h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #2a3544;
}

.credential-item p {
  font-size: 14px;
  color: #666;
}

.credential-item a {
  color: #b8995c;
}

.credential-item a:hover {
  text-decoration: underline;
}

/* Team Section */
.team-section {
  padding: 80px 20px;
  background: white;
}

.team-section h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #2a3544;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  object-fit: cover;
}

.coming-soon-photo {
  background: linear-gradient(135deg, #6b7c85 0%, #b8995c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon {
  color: white;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.team-member h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #2a3544;
}

.team-title {
  color: #777;
  font-size: 16px;
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  background: #f9fbfb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2a3544;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

.service-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  border-left: 4px solid #b8995c;
}

.service-disclaimer p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Process Section */
.process-section {
  padding: 100px 20px;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.step-number {
  font-size: 72px;
  font-weight: 300;
  color: #b8995c;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2a3544;
}

.process-step p {
  color: #666;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: #f9fbfb;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2a3544;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  opacity: 0.7;
  color: #b8995c;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: #2a3544;
  font-size: 16px;
}

.contact-item p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: #b8995c;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2a3544;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b8995c;
}

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

.form-privacy {
  margin-bottom: 25px;
}

.form-privacy p {
  margin: 0;
  color: #777;
  line-height: 1.5;
}

.form-privacy a {
  color: #b8995c;
  text-decoration: underline;
}

/* Form Message Styles */
.form-message {
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
}

.form-message.hidden {
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
  background: #2a3544;
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: white;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #b8995c;
}

.footer-license {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-jurisdiction {
  margin-top: 10px;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: #b8995c;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dropdown-menu {
    min-width: 500px;
  }

  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu li a {
    padding: 15px 20px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    min-width: auto;
    padding: 15px 20px;
    background: #f9f9f9;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .credentials {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .btn-primary {
    padding: 14px 30px;
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
