:root {
  /* BLACK & GOLD COLOR SCHEME - BABU MOTORS STYLE */
  --primary-color: #000000;    /* Pure black */
  --accent-color: #fcb900;     /* Golden yellow */
  
  /* Derived/Secondary Colors */
  --secondary-bg: #111111;     /* Very dark background */
  --primary-hover: #1a1a1a;    /* Slightly lighter black for hover */
  --accent-hover: #ffd740;     /* Lighter gold for hover */
  --banner-bg: var(--primary-color);
  --light-bg: #0a0a0a;         /* Dark background for sections */
  --text-dark: #ffffff;        /* White text */
  --text-light: #cccccc;       /* Light gray for secondary text */
}

/* Base */
html {
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000000;
  color: var(--text-dark);
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* =================== NAVBAR =================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  padding: 12px 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 100vw;
  border-bottom: 1px solid #333;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
}

.navbar-logo img {
  height: 150px;
  width: auto;
  display: block;
  max-width: 100vw;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
  padding: 4px 8px;
  border-radius: 4px;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.navbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
}

.navbar-social a {
  color: var(--accent-color);
  font-size: 1.25rem;
  transition: color 0.15s, transform 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px;
  border-radius: 50%;
}

.navbar-social a:hover {
  color: var(--primary-color);
  background: var(--accent-color);
  transform: scale(1.05);
}

@media (max-width: 950px) {
  .navbar-links {
    gap: 8px;
  }
  .navbar-logo {
    margin-right: 12px;
  }
  .navbar-social {
    margin-left: 12px;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    gap: 12px;
  }
  .navbar-logo {
    margin: 0 0 6px 0;
    justify-content: center;
  }
  .navbar-logo img {
    height: 52px;
  }
  .navbar-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .navbar-links a {
    font-size: 1.08rem;
    width: 100%;
    text-align: center;
  }
  .navbar-social {
    margin: 0;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .navbar-logo img {
    height: 38px;
  }
  .navbar {
    padding: 8px 2px;
  }
}

/* =================== SLIDESHOW =================== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 58vw;
  min-height: 320px;
  max-height: 885px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--primary-color);
  box-sizing: border-box;
  max-width: 100vw;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  margin-left: 8vw;
  color: #fff;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.slide-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.slide-title .highlight {
  color: var(--accent-color);
}

.slide-subtitle {
  font-size: 1.18rem;
  font-weight: 400;
  color: #ffffff;
}

.slide-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 13px 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  margin-top: 10px;
  width: fit-content;
}

.slide-btn:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, box-shadow 0.19s, outline 0.15s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.11);
  outline: none;
}

.arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-color);
  display: block;
}

.arrow:hover {
  background: var(--accent-color);
  box-shadow: 0 4px 16px 0 rgba(34, 34, 34, 0.23);
}

.arrow:hover svg {
  fill: var(--primary-color);
}

.arrow.left {
  left: 18px;
}

.arrow.right {
  right: 18px;
}

@media (min-width: 1230px) {
  .slideshow-container,
  .slide,
  .slide-overlay {
    height: 885px;
    min-height: 320px;
    max-height: 885px;
  }
}

@media (max-width: 900px) {
  .slide-content {
    margin-left: 5vw;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .slideshow-container,
  .slide,
  .slide-overlay {
    height: 72vw;
    min-height: 180px;
    max-height: 480px;
  }
  .slide-content {
    margin-left: 4vw;
    max-width: 95vw;
  }
  .slide-title {
    font-size: 1.3rem;
  }
  .slide-btn {
    padding: 10px 20px;
    font-size: 0.96rem;
  }
  .arrow {
    width: 28px;
    height: 28px;
  }
  .arrow svg {
    width: 12px;
    height: 12px;
  }
  .arrow.left {
    left: 8px;
  }
  .arrow.right {
    right: 8px;
  }
}

/* =================== Tailored Facilities Management Solution Banner =================== */
.tailored-solution-banner {
  position: relative;
  width: 100%;
  background: var(--primary-color);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
  margin: 0;
  border: none;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.tailored-solution-content {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px;
  z-index: 2;
}

.tailored-solution-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-right: 24px;
  text-align: center;
  letter-spacing: 0.01em;
}

.tailored-solution-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 12px 32px;
  text-decoration: none;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.13);
  transition: background 0.19s, color 0.19s, transform 0.13s;
  margin-left: 12px;
  outline: none;
}

.tailored-solution-btn:hover,
.tailored-solution-btn:focus {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px) scale(1.04);
}

#tailored-particles-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

@media (max-width: 700px) {
  .tailored-solution-content {
    flex-direction: column;
    gap: 12px;
    padding: 12px 6px;
  }
  .tailored-solution-text {
    font-size: 1.05rem;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .tailored-solution-btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 1.03rem;
    margin-left: 0;
  }
}

/* =================== Company Values Section =================== */
.company-values-section {
  width: 100%;
  padding: 42px 0 32px 0;
  background: var(--light-bg);
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

@media (max-width: 700px) {
  .company-values-section {
    margin-top: 32px;
  }
}

.company-values-wrapper {
  width: 92%;
  max-width: 1600px;
  display: flex;
  gap: 3vw;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.value-card {
  flex: 1 1 300px;
  min-width: 320px;
  max-width: 420px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0.5vw;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid #333;
}

.value-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.value-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.value-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-size: 1.12rem;
}

.value-icon {
  font-size: 2rem;
  color: var(--accent-color);
  min-width: 2.5rem;
  display: flex;
  align-items: center;
}

.value-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  color: #fff;
}

@media (max-width: 1200px) {
  .company-values-wrapper {
    gap: 1.5vw;
  }
  .value-card {
    min-width: 240px;
  }
}

@media (max-width: 850px) {
  .company-values-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .value-card {
    min-width: 210px;
    max-width: 95vw;
    width: 100%;
  }
  .value-img {
    height: 150px;
  }
  .value-overlay {
    height: 48px;
    font-size: 1.01rem;
    padding: 0 13px;
  }
  .value-icon {
    font-size: 1.4rem;
    min-width: 1.7rem;
  }
}

/* =================== WHAT WE DO SECTION =================== */
.what-we-do-section {
  background: var(--light-bg);
  padding: 54px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.what-we-do-section h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 36px;
  color: var(--text-dark);
  position: relative;
}

.what-we-do-section h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 6px;
  background: var(--accent-color);
  margin: 14px auto 0;
  border-radius: 3px;
}

.what-we-do-list {
  display: flex;
  flex-wrap: wrap;
  gap: 44px 80px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

.what-we-do-item {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 370px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.what-we-do-icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.3);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 2px solid var(--accent-color);
}

.what-we-do-icon-bg i {
  color: var(--primary-color);
}

.what-we-do-item h3 {
  font-size: 1.09rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
}

.what-we-do-item p {
  font-size: 0.97rem;
  color: var(--text-light);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  max-width: 95%;
  line-height: 1.6;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.learn-more-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 900px) {
  .what-we-do-list {
    flex-direction: column;
    gap: 0;
    max-width: 98vw;
    padding: 0 10px;
  }
  .what-we-do-item {
    margin-bottom: 28px;
    max-width: 98vw;
  }
  .what-we-do-item p {
    max-width: 97vw;
  }
}

@media (max-width: 700px) {
  .what-we-do-section {
    padding: 32px 0;
  }
  .what-we-do-list {
    padding: 0 3px;
    gap: 0 0;
  }
  .what-we-do-item {
    min-width: 0;
    gap: 12px;
  }
  .what-we-do-section h2 {
    font-size: 1.55rem;
    margin-bottom: 16px;
  }
  .what-we-do-section h2::after {
    width: 36px;
    height: 4px;
    margin-top: 9px;
  }
  .what-we-do-icon-bg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
  .what-we-do-icon-bg i {
    font-size: 0.89rem;
  }
  .what-we-do-item h3 {
    font-size: 1rem;
  }
  .what-we-do-item p {
    font-size: 0.93rem;
  }
}

/* =================== Excellence / Numbers Section =================== */
.numbers-section {
  position: relative;
  width: 100vw;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
}

.numbers-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.numbers-section .content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.numbers-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.numbers-heading svg {
  height: 52px;
  width: 52px;
  vertical-align: middle;
  fill: var(--accent-color);
}

.numbers-subheading {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 48px;
}

.numbers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.number-item {
  width: calc(33.333% - 27px);
  min-width: 200px;
  max-width: 250px;
  margin: 12px 0;
}

.number-value {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.number-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.85;
}

@media (max-width: 800px) {
  .numbers-list {
    gap: 30px;
  }
  .number-item {
    width: calc(50% - 20px);
    min-width: 140px;
    max-width: 180px;
  }
}

@media (max-width: 600px) {
  .numbers-list {
    flex-direction: column;
    gap: 24px;
  }
  .numbers-section .content {
    padding: 40px 10px;
  }
  .numbers-heading {
    font-size: 2rem;
  }
  .numbers-subheading {
    font-size: 1.3rem;
  }
  .number-value {
    font-size: 2rem;
  }
}

/* =================== Sponsor Belt =================== */
.belt-sponsors-section {
  width: 100%;
  background: #f8f9fa; /* Light gray background */
  padding: 40px 0;
  overflow: hidden;
  margin-top: 50px;
}

.belt-sponsors-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
}

.belt-sponsors-track {
  display: flex;
  align-items: center;
  height: 100px;
  animation: scroll-logos 45s linear infinite;
  will-change: transform;
}

.belt-sponsor-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 20px;
  margin-right: 60px;
  flex-shrink: 0;
  filter: none; /* Ensure no filters are applied */
  opacity: 1; /* 100% clear */
}

.belt-sponsor-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* The Animation Keyframes */
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .belt-sponsor-logo {
    height: 60px;
    margin-right: 40px;
    padding: 0 15px;
  }
  .belt-sponsors-wrapper {
    height: 90px;
  }
}

@media (max-width: 500px) {
  .belt-sponsor-logo {
    height: 45px;
    margin-right: 30px;
    padding: 0 10px;
  }
  .belt-sponsors-wrapper {
    height: 70px;
  }
  .belt-sponsors-track {
    animation: scroll-logos 30s linear infinite;
  }
}

/* =================== NEWS SECTION =================== */
.news-section {
  width: 100%;
  background: var(--light-bg);
  padding: 80px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
}

.news-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  background: var(--accent-color);
  margin: 20px auto 0;
  border-radius: 3px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.news-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #333;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-orange-line {
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  margin-bottom: 15px;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  margin-top: auto;
}

.news-date i {
  margin-right: 5px;
  color: var(--accent-color);
}

.news-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-button:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 60px 0;
  }
  .news-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-heading {
    font-size: 1.8rem;
  }
}

/* =================== LET'S TALK SECTION =================== */
.lets-talk-section {
  padding: 80px 20px;
  background: var(--light-bg);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.lets-talk-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.lets-talk-content {
  flex: 1;
  min-width: 300px;
}

.lets-talk-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.lets-talk-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  background: var(--accent-color);
  margin-top: 15px;
  border-radius: 3px;
}

.lets-talk-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.lets-talk-divider {
  height: 1px;
  background: #333;
  margin: 30px 0;
  max-width: 500px;
}

.lets-talk-contact {
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-details p {
  color: var(--text-light);
}

.lets-talk-form {
  flex: 1;
  min-width: 300px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: #0a0a0a;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.submit-btn {
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .lets-talk-container {
    flex-direction: column;
    gap: 40px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .lets-talk-form {
    padding: 30px 20px;
  }
}

/* =================== LOCATION SECTION =================== */
.location-section {
  padding: 80px 20px;
  background: var(--light-bg);
  border-top: 1px solid #333;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.location-content {
  flex: 1;
  min-width: 300px;
}

.location-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.location-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  background: var(--accent-color);
  margin-top: 15px;
  border-radius: 3px;
}

.location-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.location-divider {
  height: 1px;
  background: #333;
  margin: 30px 0;
  max-width: 500px;
}

.location-details {
  margin-top: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.detail-icon i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.detail-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.detail-content p {
  color: var(--text-light);
}

.map-container {
  flex: 1;
  min-width: 300px;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  height: 450px;
  border: 1px solid #333;
}

#map {
  width: 100%;
  height: 100%;
  border: none;
}

.directions-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  margin-top: 20px;
}

.directions-btn:hover {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    gap: 40px;
  }
  .map-container {
    height: 350px;
  }
}

/* =================== FOOTER SECTION =================== */
.website-footer {
  background: var(--primary-color);
  color: #ffffff;
  padding: 60px 20px 30px;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.footer-about p {
  margin-bottom: 20px;
  color: #cccccc;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #cccccc;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
  margin-top: 4px;
}

.footer-contact span {
  color: #cccccc;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
}