:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #34495e;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--dark);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
.navbar {
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  height: 70px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.navbar-logo {
  margin-right: 70px;
}

.navbar-logo img {
  height: 40px;
  margin-right: 10px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin: 0 16px;
  position: relative;
}

.navbar-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
  padding: 8px 6px;
}

.navbar-menu a:hover {
  color: #409cff;
}

.demo-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 9px 23px;
  border-radius: 11px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.demo-btn:hover {
  background: #2179c4;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
  border-radius: 7px;
  top: 38px;
  left: 0;
  padding: 0;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  color: #fff;
  padding: 11px 18px;
  display: block;
  font-size: 16px;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background: #2179c4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.custom-solutions-dropdown {
  display: none;
  flex-direction: row;
  width: 1040px;
  height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: -150px;
  top: 40px;
  align-items: stretch;
  padding: 0;
}

.dropdown.solutions-dropdown:hover .custom-solutions-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.solutions-list {
  list-style: none;
  margin: 0;
  padding: 24px 0 24px 30px;
  width: 400px;
  background: #fff;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-right: 1px solid #e4e9f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.solutions-list li {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 17px;
  border-radius: 10px;
  cursor: pointer;
  color: #223762;
  font-weight: 500;
  margin-bottom: 2px;
  margin-right: 30px;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  line-height: 1.3;
  background: #fff;
  white-space: normal;
}

.solutions-list li.active,
.solutions-list li:hover {
  background: #eaf4fc;
  border: 1.5px solid #409cff;
}

.solutions-list .icon img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.solutions-list .option-chevron {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.solutions-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solutions-list .option-chevron svg {
  width: 18px;
  height: 18px;
  stroke: #7b869a;
}

.solutions-detail {
  flex: 1;
  padding: 22px 36px 22px 8px;
  background: #fff;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}

.solutions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  height: 32px;
}

.solutions-header h3 {
  font-size: 21px;
  color: #0d2242;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.features-btn {
  background: #409cff;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 9px;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(64, 156, 255, 0.07);
  white-space: nowrap;
  margin-left: 16px;
}

.features-btn:hover {
  background: #246db9;
}

.details-panel {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 6px;
}

.details-panel.active {
  display: block;
}

.details-panel .row {
  display: flex;
  gap: 38px;
  margin-bottom: 20px;
}

.feature-block {
  flex: 1;
  min-width: 0;
  padding: 18px 12px 20px 14px;
  background: #fff;
  border-radius: 7px;
  transition: background 0.18s;
  box-sizing: border-box;
}

.feature-block:hover {
  background: #f3f4f6;
}

.details-panel h4 {
  font-size: 17px;
  color: #163666;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 600;
}

.details-panel p {
  color: #3a4d6b;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.feature-block h4:hover {
  color: #409cff;
}

.h-icon {
  margin-right: 16px;
  padding: 9px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: rgb(18 39 80 / 5%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.custom-resources-dropdown {
  display: none;
  flex-direction: row;
  width: 850px;
  min-height: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -400px;
  top: 42px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.resources-dropdown:hover .custom-resources-dropdown {
  display: flex !important;
}

.resources-left-panel {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resources-label {
  font-size: 18px;
  font-weight: 650;
  color: #7b869a;
  margin-bottom: 22px;
  margin-left: 5px;
  letter-spacing: 0.02em;
}

.resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resources-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #223762;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.15s, color 0.15s;
}

.resources-list li:hover {
  color: #409cff;
}

.resources-list .h-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.resources-detail {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.resources-detail .resource-item,
.resources-detail .resource-item:hover {
  background: #fff;
}

.resources-detail .resource-item img {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 240px;
  border-radius: 12px;
  margin-bottom: 38px;
}

.resource-item {
  display: flex;
  text-decoration: none;
  color: #223762;
  width: 100%;
  align-items: center;
  font-weight: 600;
}

.resource-item img {
  height: 100px;
  width: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.resource-text {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}

.resource-label {
  color: #409cff;
  font-weight: 649;
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.resource-text p {
  color: #000000;
  font-size: 25px;
  font-weight: 530;
}

.resource-text p:hover {
  color: #409cff;
}

.custom-company-dropdown {
  display: none;
  flex-direction: row;
  width: 1200px;
  min-height: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -320px;
  top: 40px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.company-dropdown:hover .custom-company-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.company-left-panel {
  width: 270px;
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.company-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d2242;
  margin-bottom: 18px;
}

.company-description {
  font-size: 15px;
  color: #223762;
  line-height: 1.6;
  margin: 0;
}

.company-right-panel {
  flex: 1;
  display: flex;
  font-size: 15px;
  margin-right: 200px;
}

.company-section {
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.section-title {
  font-weight: 700;
  font-size: 15px;
  color: #7b869a;
  margin-bottom: 16px;
}

.company-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-links li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: nowrap;
}

.company-links li:last-child {
  margin-bottom: 0;
}

.company-links .icon {
  width: 36px;
  height: 36px;
  background-color: rgba(18, 39, 80, 0.05);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.company-links .icon img {
  width: 18px;
  height: 18px;
}

.company-links .link-text strong {
  color: #223762;
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.company-links .link-text p {
  margin: 0;
  color: #223762;
  line-height: 1.5;
}

.link-text strong:hover {
  color: #409cff;
}

.navbar-menu .dropdown {
  z-index: 10;
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.hero-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.contact-form-section {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.form-header p {
  color: #7f8c8d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid var(--light);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  font-family: "Poppins", sans-serif;
}

.input-group select {
  appearance: none;
  cursor: pointer;
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: #7f8c8d;
  transition: var(--transition);
  pointer-events: none;
  background: white;
  padding: 0 5px;
}

.input-group textarea + label {
  top: 25px;
  transform: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.input-group input:focus + label,
.input-group select:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:not([value=""]) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 15px;
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 500;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
  transition: var(--transition);
}

.input-group:focus-within .input-icon {
  color: var(--secondary);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}

.checkbox-group label {
  color: #7f8c8d;
  font-size: 0.9rem;
  cursor: pointer;
}

.submit-btn {
  position: relative;
  padding: 15px 30px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.submit-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.submit-btn .btn-text,
.submit-btn .btn-loading,
.submit-btn .btn-success {
  transition: var(--transition);
}

.submit-btn .btn-loading,
.submit-btn .btn-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  opacity: 1;
}

.submit-btn.success .btn-text {
  opacity: 0;
}

.submit-btn.success .btn-success {
  opacity: 1;
}

/* Contact Info Section */
.contact-info-section {
  flex: 0 0 400px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-methods {
  display: flex;
  background: var(--light);
  padding: 10px;
}

.contact-method {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.contact-method.active {
  background: white;
  box-shadow: var(--shadow);
}

.contact-method:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

.method-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.method-icon i {
  color: white;
  font-size: 1rem;
}

.contact-method span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
}

.contact-details {
  padding: 30px;
}

.detail-tab {
  display: none;
  animation: fadeIn 0.5s ease;
}

.detail-tab.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
  background: #e8f4fc;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-text h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-text p {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text span {
  font-size: 0.8rem;
  color: #7f8c8d;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--dark);
}

.social-link:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

/* Hours Tab */
.hours-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--light);
  border-radius: 8px;
}

.hours-item .day {
  font-weight: 500;
}

.hours-item .time {
  color: var(--secondary);
  font-weight: 600;
}

.emergency-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border-radius: 10px;
  margin-top: 20px;
  color: white;
}

.emergency-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon i {
  font-size: 1.5rem;
}

.emergency-text h4 {
  margin-bottom: 5px;
}

.emergency-text p {
  font-weight: 600;
  margin-bottom: 5px;
}

.emergency-text span {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light);
}

.faq-question span {
  font-weight: 600;
  color: var(--dark);
}

.faq-question i {
  color: var(--secondary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: var(--secondary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--secondary);
  transform: translateY(-3px);
}

/* Banner */
.business-banner {
  font-family: "Montserrat", "Arial", sans-serif;
  background-image: url("../businessbg.png");
  background-size: cover;
  background-position: center;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.business-banner-overlay {
  width: 100%;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30, 54, 86, 0.55);
}

.business-title {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 18px 0;
  text-align: center;
  line-height: 120%;
  letter-spacing: -0.98px;
  margin-bottom: 24px;
}

.business-subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 35px 0;
  text-align: center;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 15px; /* space between items */
}

.icon {
  font-size: 42px;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp {
  color: #25d366;
}

.call {
  color: #9eabb7;
}

.business-btn {
  background: #fcc92f;
  color: #222;
  padding: 15px 36px;
  font-size: 1.25rem;
  border-radius: 32px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  border: none;
  cursor: pointer;
}

.business-btn:hover {
  background: #ffb500;
}

/* Footer */
.footer {
  padding: 50px 0 20px;
  background: #fff;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo-section {
  flex: 1 1 22%;
  min-width: 250px;
}

.footer-logo-section img {
  margin: 25px 0;
  height: 40px;
}

.footer-description {
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 30px 0 0;
  color: #555;
}

.footer-help {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-help img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.help-text {
  font-family: "Spartan", sans-serif !important;
  color: #007b7f;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0;
}

.consultation {
  font-family: "Spartan", sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}

.footer-column {
  flex: 1 1 15%;
  min-width: 180px;
}

.footer-column h3 {
  font-family: "Spartan", sans-serif !important;
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 3px solid #0045a6;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  color: #555;
  margin: 20px 0;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #00a6a6;
}

.footer-column p {
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.footer-bottom {
  font-family: "Inter", sans-serif !important;
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info-section {
    flex: none;
    width: 100%;
  }

  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }

  .contact-methods {
    flex-direction: column;
    gap: 10px;
  }

  .contact-method {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    justify-content: center;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-details {
    padding: 20px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .emergency-contact {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================= */
/* MOBILE NAVBAR OVERRIDE (loaded last) */
/* ========================================= */
@media (max-width: 992px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 10001;
    width: 100%;
    height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .navbar-header {
    display: flex;
    align-items: center;
  }

  .navbar-logo {
    margin-right: 0;
  }

  .menu-toggle {
    display: block;
    line-height: 1;
    margin-left: auto;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border-top: 1px solid #eceff3;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 16px 18px;
    z-index: 9999;
  }

  .navbar-menu.active {
    display: flex;
  }

  .dropdown:hover > .dropdown-content,
  .dropdown.solutions-dropdown:hover > .custom-solutions-dropdown,
  .dropdown.resources-dropdown:hover > .custom-resources-dropdown,
  .dropdown.company-dropdown:hover > .custom-company-dropdown {
    display: none !important;
  }

  .navbar-menu > li.dropdown.open:hover > .dropdown-content,
  .navbar-menu > li.dropdown.open:hover > .custom-solutions-dropdown,
  .navbar-menu > li.dropdown.open:hover > .custom-resources-dropdown,
  .navbar-menu > li.dropdown.open:hover > .custom-company-dropdown {
    display: block !important;
  }
}
