* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a2463;
  --secondary-color: #0fb8a9;
  --accent-color: #159e5f;
  --teal-gradient: #0fb8a9;
  --emerald-accent: #159e5f;
  --cyan-glow: #00e5ff;
  --metallic-silver: #d4d4d4;
  --light-bg: #f5f5f5;
  --dark-text: #1a1a1a;
  --light-text: #555555;
  --border-color: #e0e0e0;
  --dark-bg: #ffffff;
  --card-bg: #f9f9f9;
  --navbar-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: #ffffff;
  padding-top: 120px;
}

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

/* ===== Navigation ===== */
.navbar {
  background: rgba(255, 255, 255, 0.40);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 120px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(15, 184, 169, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-link:hover .logo {
  filter: drop-shadow(0 4px 8px rgba(15, 184, 169, 0.6));
  transform: scale(1.05);
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

/* Invisible hover area between link and menu */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  pointer-events: auto;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  padding: 10px 0;
  margin-top: 0;
  animation: slideDown 0.2s ease;
  z-index: 10000;
  pointer-events: auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown:hover .dropdown-menu,
.dropdown:hover::after {
  display: block;
}

.dropdown.active .dropdown-menu,
.dropdown.active::after {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #333333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  pointer-events: auto;
  cursor: pointer;
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  padding-left: 25px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ===== Buttons ===== */
.btn {
  padding: clamp(10px, 2vw, 12px) clamp(25px, 3vw, 35px);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(14px, 2vw, 16px);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 184, 169, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #000;
}

/* ===== Global Responsive Styling ===== */
section {
  padding: clamp(40px, 8vw, 100px) 0;
}

h1 {
  font-size: clamp(28px, 5vw, 64px);
}

h2 {
  font-size: clamp(24px, 4vw, 48px);
}

h3 {
  font-size: clamp(18px, 3vw, 32px);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #3a3a3a !important;
  background: #3a3a3a !important;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%) !important;
  z-index: 10;
  padding-top: 80px;
  margin-top: 0;
  width: 100%;
}

.hero-content {
  z-index: 10;
  max-width: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--emerald-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 3vw, 24px);
  color: #ffffff;
  margin-bottom: 40px;
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}

.hero-canvas-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: #3a3a3a !important;
  background-image: none !important;
  background-color: #3a3a3a !important;
}

.hero-canvas-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #3a3a3a !important;
  background-color: #3a3a3a !important;
  background-image: none !important;
  image-rendering: crisp-edges;
}

.hero-canvas {
  display: none;
}

.growth-chart {
  display: none;
}

.shape {
  display: none;
}

/* ===== Features Section ===== */
.features {
  padding: 100px 0;
  background: var(--dark-bg);
}

.features h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(15, 184, 169, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.feature-card p {
  color: var(--light-text);
  font-size: 15px;
}

/* ===== CTA Section ===== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta .btn-secondary {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

/* ===== Page Header ===== */
.page-header {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.85) 0%, rgba(15, 184, 169, 0.85) 100%), 
              center/cover no-repeat;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(15, 184, 169, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(21, 158, 95, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 56px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 20px;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Service Section Images */
.service-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-content img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 184, 169, 0.2);
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== About Section ===== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  color: #1a1a1a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.about-text h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0a2463;
}

.about-text p {
  font-size: 16px;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat {
  background: var(--card-bg);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat p {
  color: var(--light-text);
  font-weight: 500;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.mission-box,
.vision-box {
  padding: 40px;
  border-radius: 15px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.mission-box h3,
.vision-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.mission-box p,
.vision-box p {
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.8;
}

.values-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.value-card p {
  color: var(--light-text);
  font-size: 14px;
}

/* ===== Team Section ===== */
.team-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.team-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: var(--dark-text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.team-card h4 {
  padding-top: 20px;
  padding-left: 20px;
  font-size: 22px;
  color: var(--dark-text);
}

.team-card p {
  padding: 0 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-card small {
  display: block;
  padding: 0 20px 20px;
  color: var(--light-text);
  font-size: 14px;
}

/* ===== Services Section ===== */
.services-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(15, 184, 169, 0.2);
  border-top-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  color: white;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.service-card p {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 8px 0;
  color: var(--light-text);
  font-size: 14px;
}

/* ===== Process Section ===== */
.process-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.process-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: var(--dark-text);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.step {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #000;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.step p {
  color: var(--light-text);
  font-size: 14px;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--primary-color);
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--light-text);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.portfolio-item {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 30px;
}

.portfolio-info h3 {
  font-size: 22px;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.portfolio-info p {
  color: var(--light-text);
  font-size: 14px;
  margin-bottom: 15px;
}

.tech-tag {
  display: inline-block;
  background: var(--primary-color);
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 5px;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== Blog Section ===== */
.blog-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
}

.blog-date {
  color: var(--light-text);
}

.blog-category {
  background: var(--primary-color);
  color: #000;
  padding: 3px 10px;
  border-radius: 15px;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 22px;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--light-text);
  font-size: 14px;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
}

.newsletter-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.newsletter-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.newsletter-section p {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  gap: 10px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  font-size: 16px;
  background: var(--card-bg);
  color: var(--dark-text);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form button {
  white-space: nowrap;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--dark-text);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 10px;
  font-size: 24px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.info-content p {
  color: var(--light-text);
  font-size: 14px;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--dark-text);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--card-bg);
  color: var(--dark-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.social-links-large {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-size: 20px;
}

.social-link:hover {
  transform: translateY(-5px);
}

.map-section {
  padding: 100px 0;
  background: #ffffff;
}

.map-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: var(--dark-text);
}

.map-section iframe {
  max-width: 100%;
  margin-top: 30px;
}

/* ===== Footer ===== */
.footer {
  background: #f5f5f5;
  color: #333333;
  padding: 60px 0 30px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(51, 51, 51, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-section a {
  color: rgba(51, 51, 51, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-section .social-links {
  display: flex;
  gap: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  color: rgba(51, 51, 51, 0.6);
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== Consultation Modal ===== */
.consultation-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  overflow: hidden;
  padding-top: 130px;
}

.consultation-modal.show {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding-top: 140px;
  padding-bottom: 40px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.consultation-modal-content {
  background: white;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  width: 95%;
  position: relative;
  animation: slideUp 0.3s ease;
  aspect-ratio: 1 / 0.98;
  overflow: hidden;
  max-height: calc(90vh - 160px);
  margin-top: 20px;
  margin-bottom: 0;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
  padding: 0;
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-header {
  margin-bottom: 15px;
  text-align: center;
}

.modal-header h2 {
  font-size: 20px;
  color: var(--dark-text);
  margin-bottom: 6px;
  font-weight: 700;
}

.modal-header p {
  color: var(--light-text);
  font-size: 12px;
  line-height: 1.4;
}

.consultation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  grid-auto-flow: row;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.form-full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
  font-size: 12px;
}

.form-group input,
.form-group select {
  padding: 9px 11px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
  color: var(--dark-text);
  min-height: 36px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.btn-submit {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 5px;
  min-height: 38px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 184, 169, 0.5);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit-full {
  grid-column: 1 / -1;
}

.success-message {
  text-align: center;
  padding: 15px;
  background: #f0f9f7;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.success-message i {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: block;
}

.success-message p {
  color: var(--light-text);
  font-size: 13px;
  margin: 0;
  line-height: 1.3;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .nav-container {
    min-height: 90px;
    padding: 8px 15px;
  }

  .logo {
    height: 80px;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: clamp(40px, 6vw, 70px) 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    padding-top: 100px;
    justify-content: flex-start;
  }

  .hero-content {
    margin-top: 30px;
  }

  .hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  section {
    padding: 60px 0;
  }

  .features h2,
  .values-section h2,
  .team-section h2,
  .services-section h2,
  .process-section h2,
  .blog-section h2,
  .map-section h2,
  .newsletter-section h2 {
    font-size: 32px;
  }

  .about-grid,
  .mission-vision,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .features-grid,
  .services-grid,
  .team-grid,
  .blog-grid,
  .portfolio-grid,
  .values-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 24px;
  }

  /* Responsive Consultation Modal */
  .consultation-modal {
    padding-top: 110px;
    overflow: hidden;
  }

  .consultation-modal.show {
    padding-top: 120px;
    padding-bottom: 30px;
    overflow-y: auto;
  }

  .consultation-modal-content {
    padding: 19px;
    max-width: 90%;
    aspect-ratio: 1 / 1.0;
    max-height: calc(90vh - 140px);
    margin-top: 15px;
    overflow: hidden;
  }

  .modal-header h2 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .modal-header p {
    font-size: 11.5px;
  }

  .close-modal {
    font-size: 22px;
    top: 8px;
    right: 8px;
  }

  .consultation-form {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-group input,
  .form-group select {
    padding: 8px 10px;
    font-size: 13px;
    min-height: 35px;
  }

  .btn-submit {
    padding: 9px 18px;
    font-size: 13px;
    margin-top: 5px;
    min-height: 35px;
  }

  .consultation-form {
    gap: 8px;
  }

  .success-message {
    padding: 12px;
  }

  .success-message i {
    font-size: 32px;
    margin-bottom: 6px;
  }

  .success-message p {
    font-size: 12px;
  }

  /* Mobile Dropdown Menu */
  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: #f9f9f9;
    box-shadow: none;
    border-left: 4px solid var(--primary-color);
    animation: none;
    margin: 0;
    padding: 10px 0;
    min-width: auto;
    width: 100%;
  }

  .dropdown-item {
    padding: 10px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 85px;
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .nav-container {
    min-height: 85px;
    height: auto;
    padding: 8px 12px;
  }

  .logo {
    height: 65px;
  }

  .brand-name {
    font-size: 16px;
  }

  section {
    padding: clamp(30px, 5vw, 50px) 0;
  }

  .hero {
    padding-top: 80px;
    justify-content: flex-start;
  }

  .hero-content {
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero .btn {
    padding: 10px 20px;
    font-size: 13px;
    min-height: 40px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
    min-height: 40px;
  }

  section {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 16px;
  }

  /* Mobile Consultation Modal - Extra Small Devices */
  .consultation-modal {
    padding-top: 100px;
    overflow: hidden;
  }

  .consultation-modal.show {
    padding-top: 110px;
    padding-bottom: 30px;
    overflow-y: auto;
  }

  .consultation-modal-content {
    padding: 13px;
    max-width: 96%;
    border-radius: 10px;
    aspect-ratio: 1 / 1.02;
    max-height: calc(90vh - 130px);
    margin-top: 15px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .modal-header h2 {
    font-size: 17px;
    margin-bottom: 3px;
  }

  .modal-header p {
    font-size: 11px;
  }

  .close-modal {
    font-size: 20px;
    top: 6px;
    right: 8px;
  }

  .form-group {
    gap: 3px;
  }

  .form-group label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 3px;
  }

  .form-group input,
  .form-group select {
    padding: 7px 9px;
    font-size: 12px;
    min-height: 33px;
  }

  .consultation-form {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .btn-submit {
    padding: 8px 14px;
    font-size: 12px;
    margin-top: 5px;
    min-height: 33px;
  }

  .success-message {
    padding: 10px;
    border-radius: 6px;
  }

  .success-message i {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .success-message p {
    font-size: 13px;
  }
}

/* FINAL LOCK - HERO BACKGROUND PERMANENTLY DARK GREY */
body > .hero,
body > section.hero {
  background-color: #3a3a3a !important;
  background-image: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%) !important;
  background-attachment: fixed !important;
}

.hero::before,
.hero::after {
  background: transparent !important;
}

/* Lock Canvas Container */
#canvas-container {
  background-color: #3a3a3a !important;
  background-image: none !important;
}

#canvas-container::before,
#canvas-container::after {
  background: transparent !important;
}

html .hero {
  background-color: #3a3a3a !important;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%) !important;
}
