/* ========== GLOBAL RESETS & FONTS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5; /* More accessible line height */
  font-family: 'Inter'; /* Added fallback */
  scrollbar-width: none; /* Hides scrollbar in Firefox (not recommended for accessibility) */
  -ms-overflow-style: none; 
  scroll-behavior: smooth;
}

/* Hide scrollbars for webkit browsers (optional, not accessible) */
body::-webkit-scrollbar {
  display: none;
}

/* Text Selection Styles */
::selection {
  background: #FF0000;
  color: #000000;
}
/* Legacy browser selection rules (can be safely removed for modern browsers) */

/* ========== HTML/BODY BASICS ========== */
html,
body {
  font-family: 'Inter';
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}

/* ========== ACCESSIBILITY HELPERS ========== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ========== HERO SECTION ========== */
.hero-section {
  padding-top: 50px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero-content {
  width: 100%;
  z-index: 2;
}

.hero-title {
  font-size: 100px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
  height: auto; /* Remove fixed height for accessibility */
}

.text-gray {
  color: #aaa;
}

.hero-description {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.vector-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100vh;
  z-index: 1;
}

.vector-lines svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s forwards;
  stroke: #00000033 !important;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.2s; }
.line-3 { animation-delay: 0.4s; }
.line-4 { animation-delay: 0.6s; }
.line-5 { animation-delay: 0.8s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* ========== HERO MEDIA QUERIES ========== */
@media (max-width: 1300px) {
  .hero-section { height: auto; }
  .vector-lines { height: 100%; }
}

@media (max-width: 1024px) {
  .hero-section {
    width: 100%;
    height: auto;
    min-height: 600px;
  }
  .hero-title { font-size: 60px; }
  .hero-content { width: 70%; }
  .vector-lines { width: 50%; height: 100%; }
}

@media (max-width: 768px) {
  .hero-section { height: auto; }
  .hero-container {
    height: auto;
    flex-direction: column;
    justify-content: center;
    padding: 25% 5% 10% 5%;
  }
  .hero-content { width: 100%; text-align: left; }
  .hero-title { font-size: 48px; }
  .hero-description { font-size: 18px; }
  .hero-description br { display: none; }
  .vector-lines { width: 100%; height: 100%; opacity: 0.3; }
}

@media (max-width: 576px) {
  .hero-description { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero-section { height: auto; width: 100%; }
  .hero-title { font-size: 42px; }
}

/* ========== FONT IMPORTS ========== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

/* ========== CONTACT SECTION ========== */
.contact-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 900px;
  overflow: hidden;
}

.map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#map {
  width: 100%;
  height: 100%;
  display: grid;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marker-outer {
  position: absolute;
  top: 50%;
  left: 70vw;
  display: grid;
  z-index: 2;
}

.marker-shape {
  grid-row: 1/2;
  grid-column: 1/2;
  z-index: 5;
  width: 32px;
  height: 35px;
  background-image: url('/static/images/location_marker.webp');
  background-position: center;
}

.marker-circle,
.marker-circle-inner {
  grid-row: 1/2;
  grid-column: 1/2;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.5);
  animation: pulse 3s infinite;
}
.marker-circle-inner { animation-delay: 1s; }

@keyframes pulse {
  0% { opacity: 0; transform: scale(1);}
  40% { opacity: 1;}
  100% { opacity: 0; transform: scale(8);}
}

/* ========== CONTACT CONTENT & HEADER ========== */
.contact-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-left: 100px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  max-width: 95vw;
}

.contact-header {
  margin-bottom: 60px;
}

.connect-heading {
  font-family: Georgia;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  width: auto;
  margin: 0;
}

.yellow-line {
  width: 100%;
  max-width: 1552px;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
  border: 0;
  background-image: linear-gradient(90deg, #ff0000 0%, rgba(20, 20, 20, 0) 100%);
}

.lets-talk-heading {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0;
  width: auto;
  margin: 0;
}

.contact-info {
  display: flex;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  margin-right: 86px;
  margin-bottom: 20px;
}

.info-icon {
  width: 32px;
  height: 34.5px;
  margin-right: 18px;
}

.info-content h3 {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 26px 0;
  
}

.info-content p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: 0;
  color: #939393;
  margin: 0;
 
}

.address-info .info-content { width: 303px; }
.phone-info .info-content { width: 171px; }
.email-info .info-content { width: 130px; }

/* ========== FORM ========== */
.contact-form-container {
  width: 100%;
  max-width: 800px;
}

.form-header {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.form-header h3 {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  width: auto;
  margin: 0;
}

.yellow-short-line {
  width: 57px;
  height: 3px;
  background-color: #ff0000;
  margin-left: 9px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 27px;
  margin-bottom: 30px;
}

.form-group {
  flex: 1;
}

.form-group input {
  width: 100%;
  height: 82px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background-color: transparent;
  padding: 0 30px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input:focus {
  outline: 2px solid #ff0000;
  border-color: #ff0000;
  background-color: rgba(255,222,89,0.08);
}

.send-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 77px;
  background-color: #ff0000;
  border: 1px solid #000000;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s, border-color 0.2s;
}

.send-button:hover,
.send-button:focus {
  background-color: #ff0000;
  border-color: #ff0000;
}

.send-button span {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin-right: 10px;
}

.arrow-icon {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .contact-content {
    padding-left: 50px;
    padding-right: 20px;
  }
  .yellow-line { max-width: 1000px; }
  .form-row { gap: 15px; }
  .info-item { margin-right: 40px; }
}

@media (max-width: 992px) {
  .contact-content { padding-left: 40px; }
  .lets-talk-heading { font-size: 50px; }
  .info-item { margin-right: 30px; }
}

@media (max-width: 768px) {
  .contact-content {
    padding-left: 30px;
    padding-right: 30px;
    background: rgba(0, 0, 0, 0.8);
    max-width: 100vw;
    overflow-y: auto;
  }
  .contact-info { flex-direction: column; gap: 30px; }
  .info-item { margin-right: 0; margin-bottom: 30px; }
  .lets-talk-heading { font-size: 40px; }
  .form-row { flex-direction: column; gap: 20px; }
  .form-group input { height: 60px; }
}

@media (max-width: 576px) {
  .contact-content { padding: 30px 20px; }
  .contact-header { margin-bottom: 40px; }
  .lets-talk-heading { font-size: 36px; }
  .connect-heading { font-size: 22px; }
  .info-content h3 { font-size: 22px; margin-bottom: 15px; }
  .info-content p { font-size: 18px; }
  .form-header h3 { font-size: 22px; }
  .send-button { width: 100%; }
}

@media (max-width: 480px) {
  .contact-section { min-height: 800px; }
  .lets-talk-heading { font-size: 32px; }
  .form-group input { height: 50px; font-size: 16px; padding: 0 15px; }
}

/* ========== END OF FILE ========== */