/* =============== ROOT VARIABLES =============== */
:root {
  --c-primary: #ff7300;
  --c-accent: #11af4b;
  --c-bg: #fafafc;
  --c-bg-alt: #fff;
  --c-txt-main: #1a1a1b;
  --c-txt-light: #fff;
  --nav-height: 110px; /* Increased from 64px to accommodate 100px logo */
  --font-h1: 1.75rem;
  --font-h2: 1.2rem;
  --font-paragraph: 1rem;
  --font-weight-bold: 700;
}

/* =============== RESET =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-txt-main);
  background: var(--c-bg);
  line-height: 1.6;
}

/* =============== NAVBAR SECTION START =============== */
.ar-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--c-bg-alt);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.ar-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ar-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}

.ar-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain; /* Ensures logo maintains aspect ratio */
}

.ar-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ar-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-txt-main);
}

.ar-logo-tagline {
  font-size: 0.65rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-txt-alt);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.ar-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.ar-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--c-txt-main);
  transition: all 0.3s ease;
}

.ar-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ar-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.ar-nav-links a {
  text-decoration: none;
  color: var(--c-txt-main);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.ar-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width 0.3s ease;
}

.ar-nav-links a:hover::after,
.ar-nav-links a.active::after {
  width: 100%;
}

.ar-download-btn {
  padding: 0.7rem 1.5rem;
  background: var(--c-primary);
  color: var(--c-txt-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ar-download-btn:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
}

/* =============== NAVBAR RESPONSIVE =============== */

/* Small Tablets and Mobile Landscape: 601px - 768px */
@media (min-width: 601px) and (max-width: 768px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 70px;
    height: 70px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile Portrait: 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 60px;
    height: 60px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .ar-navbar {
    padding: 0.8rem 3vw;
  }

  .ar-logo-text {
    font-size: 1.2rem;
  }
}

/* Extra Small Mobile: 320px - 480px */
@media (max-width: 480px) {
  .ar-hamburger {
    display: flex;
  }

  .ar-logo-img {
    width: 50px;
    height: 50px;
  }

  .ar-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--c-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 1.5rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 102;
    overflow-y: auto;
  }

  .ar-nav-menu.active {
    right: 0;
  }

  .ar-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .ar-nav-links li {
    width: 100%;
  }

  .ar-nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .ar-download-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .ar-navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }

  .ar-navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .ar-navbar {
    padding: 0.7rem 3vw;
  }

  .ar-logo-text {
    font-size: 1.1rem;
  }
}
/* =============== NAV SECTION END =============== */


/* =============== CONTACT HERO SECTION =============== */
#contact-hero {
  background: linear-gradient(135deg, #fafafc 0%, #f5f7fa 100%);
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* =============== ANIMATED ABSTRACT BACKGROUND =============== */
.contact-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Mesh Gradient Base */
.mesh-gradient-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 20% 30%, rgba(255, 115, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(17, 175, 75, 0.05) 0px, transparent 50%),
    radial-gradient(at 40% 80%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
    radial-gradient(at 90% 70%, rgba(255, 115, 0, 0.04) 0px, transparent 50%);
  animation: mesh-shift 15s ease-in-out infinite;
}

@keyframes mesh-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Gradient Blobs */
.gradient-blob-contact {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: multiply;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.blob-contact-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.12) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  animation-name: blob-float-1;
}

.blob-contact-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(17, 175, 75, 0.12) 0%, transparent 70%);
  top: 10%;
  right: -100px;
  animation-name: blob-float-2;
  animation-duration: 25s;
}

.blob-contact-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
  animation-name: blob-float-3;
  animation-duration: 22s;
}

.blob-contact-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.08) 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
  animation-name: blob-float-4;
  animation-duration: 28s;
}

/* Blob Animations */
@keyframes blob-float-1 {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
  }
  33% { 
    transform: translate(50px, -30px) scale(1.05);
  }
  66% { 
    transform: translate(-30px, 40px) scale(0.95);
  }
}

@keyframes blob-float-2 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% { 
    transform: translate(-40px, 50px) rotate(120deg) scale(1.08);
  }
  66% { 
    transform: translate(30px, -40px) rotate(240deg) scale(0.92);
  }
}

@keyframes blob-float-3 {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
  }
  50% { 
    transform: translate(-60px, -50px) scale(1.1);
  }
}

@keyframes blob-float-4 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
  }
  25% { 
    transform: translate(40px, -30px) rotate(90deg);
  }
  50% { 
    transform: translate(-20px, 50px) rotate(180deg);
  }
  75% { 
    transform: translate(50px, 30px) rotate(270deg);
  }
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw;
  position: relative;
  z-index: 2;
}

/* =============== HERO CONTENT - CENTERED =============== */
.contact-hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 900px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #ff7300;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.6em 1.2em;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  width: fit-content;
  border: 1px solid rgba(255,115,0,0.2);
  box-shadow: 0 4px 12px rgba(255,115,0,0.1);
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1b;
  line-height: 1.2;
  margin: 0;
}

.title-highlight {
  color: #ff7300;
}

.contact-hero-desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

/* =============== HERO FEATURES - HORIZONTAL =============== */
.contact-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-feature-item svg {
  color: #11af4b;
  flex-shrink: 0;
}

/* =============== HERO STATS =============== */
.contact-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 700px;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.hero-stat:hover {
  border-color: #ff7300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,115,0,0.15);
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ff7300;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  #contact-hero {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3rem;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-desc {
    font-size: 1rem;
  }

  .contact-hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Reduce blob sizes on mobile */
  .blob-contact-1, .blob-contact-2, .blob-contact-3, .blob-contact-4 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .contact-hero-title {
    font-size: 1.8rem;
  }

  .hero-feature-item {
    font-size: 0.9rem;
  }

  .hero-stat {
    padding: 1.2rem 0.8rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #contact-hero {
    padding-top: calc(var(--nav-height) + 1.5rem);
  }

  .contact-hero-title {
    font-size: 1.6rem;
  }

  /* Further reduce blobs on small screens */
  .blob-contact-1, .blob-contact-2, .blob-contact-3, .blob-contact-4 {
    width: 200px;
    height: 200px;
  }
}
/* =============== END OF CONTACT HERO SECTION =============== */



/* =============== CONTACT FORM SECTION =============== */
#contact-form-section {
  background: #fafafc;
  padding: 5rem 0;
  position: relative;
}

.contact-form-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== SECTION HEADER =============== */
.contact-form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6em 1.2em;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,115,0,0.2);
}

.contact-form-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1b;
  margin: 0 0 1rem 0;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.7;
}

/* =============== ROW 1: MAIN CONTENT - EQUAL HEIGHTS =============== */
.contact-form-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* =============== FORM CARD =============== */
.form-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  height: 100%;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* =============== FORM ROWS =============== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* =============== FORM GROUPS =============== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1b;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.optional {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9ca3af;
}

/* =============== INPUT WRAPPER =============== */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

.textarea-icon {
  top: 1rem;
}

/* =============== FORM INPUTS =============== */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 0.9rem 0.9rem 3rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a1a1b;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff7300;
  box-shadow: 0 0 0 4px rgba(255,115,0,0.08);
}

.form-input:focus ~ .input-icon,
.form-select:focus ~ .input-icon,
.form-textarea:focus ~ .textarea-icon {
  color: #ff7300;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

/* =============== INCREASED TEXTAREA HEIGHT =============== */
.form-textarea {
  resize: vertical;
  min-height: 400px;  /* Increased from 120px */
  padding-top: 0.9rem;
  padding-left: 3rem;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* =============== FORM ERRORS =============== */
.form-error {
  font-size: 0.8rem;
  color: #ef4444;
  font-weight: 600;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #ef4444;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error .input-icon {
  color: #ef4444;
}

/* =============== SUBMIT BUTTON =============== */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff7300 0%, #ff8c00 100%);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255,115,0,0.3);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,115,0,0.4);
}

.submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.submit-btn.loading .btn-content {
  opacity: 0;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

/* =============== BUTTON LOADER =============== */
.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.submit-btn.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =============== FORM MESSAGES =============== */
.form-message {
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  animation: slideDown 0.3s ease;
}

.form-message.show {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-msg {
  background: rgba(17,175,75,0.1);
  color: #11af4b;
  border: 2px solid rgba(17,175,75,0.3);
}

.error-msg {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 2px solid rgba(239,68,68,0.3);
}

/* =============== INFO SIDEBAR =============== */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

/* =============== INFO BLOCKS =============== */
.info-block {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  flex: 1;
}

.info-block-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1b;
  margin: 0 0 1.2rem 0;
}

/* =============== CONTACT LINKS =============== */
.contact-link {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.8rem;
}

.contact-link:last-child {
  margin-bottom: 0;
}

.contact-link:hover {
  background: rgba(255,115,0,0.05);
  transform: translateX(4px);
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-content {
  flex: 1;
}

.contact-link-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.contact-link-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1b;
  word-break: break-word;
}

.contact-link-subtext {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.2rem;
  font-weight: 500;
}

/* =============== OFFICE ADDRESS =============== */
.office-address {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(250,250,252,0.8);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.office-address svg {
  color: #ff7300;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.office-address p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  font-weight: 600;
}

.office-address strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a1a1b;
  font-size: 1rem;
}

/* Map link button */
.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff7300;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-link-btn:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,115,0,0.3);
}

/* =============== ROW 2: SOCIAL LINKS SECTION =============== */
.social-links-section {
  width: 100%;
  max-width: 100%;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.social-links-container {
  max-width: 100%;
}

.social-links-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1b;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: white;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #ff7300;
  color: white;
  border-color: #ff7300;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255,115,0,0.3);
}

.social-btn svg {
  transition: transform 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.social-btn-label {
  font-size: 0.95rem;
  font-weight: 700;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .contact-form-title {
    font-size: 2.4rem;
  }
  
  .contact-form-content {
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 1024px) {
  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-sidebar {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }
  
  .social-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #contact-form-section {
    padding: 3rem 0;
  }
  
  .contact-form-title {
    font-size: 2rem;
  }
  
  .contact-form-subtitle {
    font-size: 1rem;
  }
  
  .form-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .form-textarea {
    min-height: 150px;
  }
  
  .info-block {
    padding: 1.5rem;
  }
  
  .social-links-section {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .contact-form-title {
    font-size: 1.8rem;
  }
  
  .form-card {
    padding: 1.5rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.8rem 0.8rem 0.8rem 2.8rem;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 0.8rem;
  }
  
  .form-textarea {
    min-height: 130px;
  }
  
  .submit-btn {
    padding: 1rem 1.5rem;
  }
  
  .social-links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-btn {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-title {
    font-size: 1.6rem;
  }
  
  .form-card {
    padding: 1.2rem;
  }
  
  .header-badge {
    font-size: 0.8rem;
  }
  
  .social-links-section {
    padding: 1.5rem;
  }
  
  .form-textarea {
    min-height: 120px;
  }
}
/* =============== END OF CONTACT FORM SECTION =============== */


/* =============== CAREERS SECTION (3-CARD UI) =============== */
#ar-careers-section {
  background: #f9fafb;
  padding: 5rem 0;
}

.ar-careers-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* Header */
.ar-careers-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.ar-careers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(22,163,74,0.08);
  color: #15803d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(22,163,74,0.18);
}

.ar-careers-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #111827;
  margin: 1rem 0 0.75rem;
}

.ar-careers-accent {
  color: #ff7300;
}

.ar-careers-desc {
  font-size: 1.02rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Grid & Cards */
.ar-careers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
  align-items: flex-start;   /* important: prevents other cards from stretching to tallest */
}

.ar-career-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  /* no fixed height/min-height so each card auto-sizes */
}

.ar-career-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,115,0,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ar-career-card:hover {
  border-color: #ff7300;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(15,23,42,0.12);
}

.ar-career-card:hover::before {
  opacity: 1;
}

/* Header row inside card */
.ar-career-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.ar-career-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ar-career-meta {
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* Toggle button */
.ar-career-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.ar-career-toggle-btn:hover {
  border-color: #ff7300;
  color: #ff7300;
  background: #fffbeb;
}

.ar-career-toggle-icon {
  font-size: 0.9rem;
}

/* Brief / Details */
.ar-career-brief {
  margin-top: 0.2rem;
}

.ar-career-subtitle {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.3rem;
}

.ar-career-mini {
  font-size: 0.9rem;
  font-weight: 800;
  color: #4b5563;
  margin-top: 0.6rem;
}

/* Lists */
.ar-career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ar-career-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.55;
}

.ar-career-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #ff7300;
}

/* Collapsible details */
.ar-career-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0.2rem;
}

.ar-career-card.ar-career-open .ar-career-details {
  /* max-height is set in JS for each card */
}

/* Per-card WhatsApp CTA – WhatsApp green #25d366 */
.ar-career-wa-btn {
  margin-top: 0.6rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
  transition: all 0.25s ease;
}

.ar-career-wa-btn svg {
  transition: transform 0.25s ease;
}

.ar-career-wa-btn:hover {
  background: #1fb259;
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(37,211,102,0.6);
}

.ar-career-wa-btn:hover svg {
  transform: translateX(3px);
}

/* Bottom common CTA */
.ar-careers-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
  border-radius: 18px;
  background: linear-gradient(90deg, #ffedd5, #fffbeb);
  border: 1px solid #fed7aa;
}

.ar-careers-cta-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #7c2d12;
  margin-bottom: 0.2rem;
}

.ar-careers-cta-text p {
  font-size: 0.95rem;
  color: #78350f;
  margin: 0;
}

/* Common CTA button also WhatsApp green */
.ar-careers-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
}

.ar-careers-cta-btn svg {
  transition: transform 0.3s ease;
}

.ar-careers-cta-btn:hover {
  background: #1fb259;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.6);
}

.ar-careers-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .ar-careers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #ar-careers-section {
    padding: 4rem 0;
  }

  .ar-careers-grid {
    grid-template-columns: 1fr;
  }

  .ar-careers-title {
    font-size: 2rem;
  }

  .ar-careers-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ar-careers-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ar-career-card {
    padding: 1.4rem 1.2rem 1.2rem;
  }

  .ar-careers-title {
    font-size: 1.8rem;
  }

  .ar-career-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ar-career-toggle-btn {
    margin-top: 0.4rem;
  }
}
/* =============== END OF CAREERS SECTION =============== */



/* =============== UNIQUE MAP SECTION =============== */
#map-section {
  background: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.map-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* =============== UNIQUE HEADER WITH ANIMATED PIN =============== */
.map-header-unique {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.map-pin-animated {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bouncePin 2s ease-in-out infinite;
}

.map-pin-animated svg {
  color: #ff7300;
  filter: drop-shadow(0 4px 8px rgba(255,115,0,0.3));
  position: relative;
  z-index: 2;
}

.pin-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,115,0,0.2);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes bouncePin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.map-title-unique {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1b;
  margin: 0;
  letter-spacing: -0.03em;
}

.map-desc-unique {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  font-weight: 500;
}

/* =============== SPLIT CONTAINER - EQUAL BALANCE =============== */
.map-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* =============== MAP SIDE =============== */
.map-side {
  position: relative;
}

.map-frame-unique {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(0,0,0,0.05),
    0 20px 60px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  border: 3px solid white;
}

.map-frame-unique:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 0 1px rgba(0,0,0,0.05),
    0 30px 80px rgba(0,0,0,0.2);
}

.google-map-unique {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============== FLOATING ACTION BUTTON =============== */
.map-float-action {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #ff7300;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255,115,0,0.4);
  transition: all 0.3s ease;
  z-index: 10;
  text-decoration: none;
}

.map-float-action:hover {
  background: #e66800;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 36px rgba(255,115,0,0.5);
}

/* =============== INFO SIDE - NO OVERLAP =============== */
.info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1rem;
}

/* Custom Scrollbar */
.info-side::-webkit-scrollbar {
  width: 6px;
}

.info-side::-webkit-scrollbar-track {
  background: transparent;
  margin: 0.5rem 0;
}

.info-side::-webkit-scrollbar-thumb {
  background: #ff7300;
  border-radius: 10px;
}

.info-side::-webkit-scrollbar-thumb:hover {
  background: #e66800;
}

/* =============== INFO CARD STACK =============== */
.info-card-stack {
  background: #fafafc;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.info-card-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ff7300;
}

.info-card-stack:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: #ff7300;
}

.info-card-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.info-card-stack:hover .info-card-header-icon {
  transform: scale(1.1) rotate(-5deg);
  background: #ff7300;
  color: white;
}

.info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1b;
  margin: 0;
  line-height: 1.6;
}

/* =============== QUICK ACTIONS GRID =============== */
.quick-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex-shrink: 0;
}

.action-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: #ff7300;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,115,0,0.15);
}

.action-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255,115,0,0.1);
  color: #ff7300;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.action-card:hover .action-icon-wrapper {
  background: #ff7300;
  color: white;
  transform: scale(1.1);
}

.action-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.action-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.action-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1b;
}

/* =============== HOURS CARD =============== */
.hours-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hours-card:hover {
  border-color: #11af4b;
  box-shadow: 0 8px 24px rgba(17,175,75,0.1);
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1b;
}

.hours-header svg {
  color: #11af4b;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem;
  background: #fafafc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hours-row:hover {
  background: rgba(17,175,75,0.05);
  transform: translateX(4px);
}

.hours-row.closed {
  opacity: 0.5;
}

.hours-day {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
}

.hours-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #11af4b;
}

.hours-row.closed .hours-time {
  color: #ef4444;
}

/* =============== DIRECTIONS CTA - INCREASED WIDTH =============== */
.directions-cta {
  width: auto;
  min-width: 240px;
  max-width: 100%;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ff7300;
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255,115,0,0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: auto;
}

.directions-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.6s ease;
}

.directions-cta:hover::before {
  left: 100%;
}

.directions-cta:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,115,0,0.5);
}

.directions-cta svg {
  flex-shrink: 0;
}

.directions-cta svg:last-child {
  transition: transform 0.3s ease;
}

.directions-cta:hover svg:last-child {
  transform: translateX(4px);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .map-title-unique {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .map-split-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-frame-unique {
    height: 500px;
  }
  
  .info-side {
    height: auto;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding-right: 0;
  }
  
  .directions-cta {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #map-section {
    padding: 3rem 0;
  }
  
  .map-title-unique {
    font-size: 2rem;
  }
  
  .map-desc-unique {
    font-size: 1rem;
  }
  
  .map-frame-unique {
    height: 400px;
    border-radius: 24px;
  }
  
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .info-card-stack {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .map-title-unique {
    font-size: 1.8rem;
  }
  
  .map-frame-unique {
    height: 350px;
  }
  
  .map-float-action {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .map-title-unique {
    font-size: 1.6rem;
  }
  
  .map-frame-unique {
    height: 300px;
    border-radius: 20px;
  }
  
  .map-pin-animated {
    width: 60px;
    height: 60px;
  }
  
  .map-pin-animated svg {
    width: 40px;
    height: 40px;
  }
  
  .info-card-stack {
    padding: 1.2rem;
  }
  
  .directions-cta {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
  }
}
/* =============== END OF UNIQUE MAP SECTION =============== */


/* =============== FOOTER SECTION START =============== */

#ar-footer {
  background: var(--c-txt-main);
  color: #e5e7eb;
}

/* Main Footer Layout */
.ar-footer-main {
  padding: 4rem 4vw 2rem;
}
.ar-footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* === Footer Content Grid === */
.ar-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* === Brand Column === */
.ar-brand-col {
  max-width: 350px;
}
/* Logo Row */
.ar-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.ar-footer-logo img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}
/* Brand Name and Tagline */
.ar-footer-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}
.ar-footer-tagline {
  font-weight: 400;
  font-size: 0.75rem; /* Smaller font size */
  font-style: italic; /* Italic style */
  color: #9ca3af;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
/* Brand About */
.ar-footer-about {
  font-size: var(--font-paragraph);
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* === Social Links === */
.ar-footer-social {
  display: flex;
  gap: 1rem;
}
.ar-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}
.ar-social-link:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* === Footer Columns === */
.ar-footer-col {
  display: flex;
  flex-direction: column;
}
/* Column Headings */
.ar-footer-heading {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 1.5rem;
}
/* Links and Contact */
.ar-footer-links,
.ar-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ar-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: var(--font-paragraph);
  transition: all 0.3s ease;
  display: inline-block;
}
.ar-footer-links a:hover {
  color: var(--c-primary);
  transform: translateX(4px);
}
/* Contact Items */
.ar-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #9ca3af;
  font-size: var(--font-paragraph);
  line-height: 1.6;
}
.ar-footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--c-primary);
}

/* === Footer Bottom === */
.ar-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 4vw;
}
.ar-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
/* Copyright and Legal Links */
.ar-footer-copyright {
  font-size: 0.9rem;
  color: #9ca3af;
}
.ar-footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.ar-footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.ar-footer-legal a:hover {
  color: var(--c-primary);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .ar-footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
  .ar-footer-col:nth-child(4),
  .ar-footer-col:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .ar-footer-main {
    padding: 3rem 4vw 2rem;
  }
  .ar-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ar-brand-col {
    grid-column: span 2;
    max-width: 100%;
  }
  .ar-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .ar-footer-legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .ar-footer-main {
    padding: 2.5rem 4vw 1.5rem;
  }
  .ar-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ar-brand-col {
    grid-column: span 1;
  }
  .ar-footer-heading {
    font-size: 1.3rem;
  }
  .ar-footer-social {
    gap: 0.8rem;
  }
  .ar-social-link {
    width: 36px;
    height: 36px;
  }
  .ar-footer-legal {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
@media (max-width: 360px) {
  .ar-footer-logo-text {
    font-size: 1.3rem;
  }
  .ar-footer-heading {
    font-size: 1.2rem;
  }
}
/* =============== FOOTER SECTION END =============== */


/* =============== SCROLL TO TOP BUTTON START =============== */
.ar-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff7300; /* Use your primary color solid */
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(.51,.92,.24,1), box-shadow 0.2s;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(255,115,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ar-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ar-scroll-top:hover,
.ar-scroll-top:focus {
  background: #fff;
  color: #ff7300;
  border-color: #ff7300;
  box-shadow: 0 7px 24px rgba(255,115,0,0.19);
  transform: translateY(-3px) scale(1.05);
}
.ar-scroll-top:active {
  background: #f8f8f8;
  color: #ff7300;
  transform: translateY(0) scale(0.97);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .ar-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
/* =============== SCROLL TO TOP BUTTON END =============== */








/* =============== FOOTER SECTION START =============== */
#ar-footer {
  background: var(--c-txt-main);
  color: #e5e7eb;
}

.ar-footer-main {
  padding: 4rem 4vw 2rem;
}

.ar-footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Footer Content Grid */
.ar-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand Column */
.ar-brand-col {
  max-width: 350px;
}

.ar-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.ar-footer-logo img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.ar-footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.ar-footer-about {
  font-size: var(--font-paragraph);
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Social Links */
.ar-footer-social {
  display: flex;
  gap: 1rem;
}

.ar-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.ar-social-link:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Columns */
.ar-footer-col {
  display: flex;
  flex-direction: column;
}

.ar-footer-heading {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 1.5rem;
}

.ar-footer-links,
.ar-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ar-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: var(--font-paragraph);
  transition: all 0.3s ease;
  display: inline-block;
}

.ar-footer-links a:hover {
  color: var(--c-primary);
  transform: translateX(4px);
}

/* Contact Items */
.ar-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #9ca3af;
  font-size: var(--font-paragraph);
  line-height: 1.6;
}

.ar-footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--c-primary);
}

/* Footer Bottom */
.ar-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 4vw;
}

.ar-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ar-footer-copyright {
  font-size: 0.9rem;
  color: #9ca3af;
}

.ar-footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ar-footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.ar-footer-legal a:hover {
  color: var(--c-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ar-footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }

  .ar-footer-col:nth-child(4),
  .ar-footer-col:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .ar-footer-main {
    padding: 3rem 4vw 2rem;
  }

  .ar-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .ar-brand-col {
    grid-column: span 2;
    max-width: 100%;
  }

  .ar-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .ar-footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ar-footer-main {
    padding: 2.5rem 4vw 1.5rem;
  }

  .ar-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ar-brand-col {
    grid-column: span 1;
  }

  .ar-footer-heading {
    font-size: 1.3rem;
  }

  .ar-footer-social {
    gap: 0.8rem;
  }

  .ar-social-link {
    width: 36px;
    height: 36px;
  }

  .ar-footer-legal {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .ar-footer-logo-text {
    font-size: 1.3rem;
  }

  .ar-footer-heading {
    font-size: 1.2rem;
  }
}
/* =============== FOOTER SECTION END =============== */



/* =============== SCROLL TO TOP BUTTON START =============== */
.ar-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff7300; /* Use your primary color solid */
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(.51,.92,.24,1), box-shadow 0.2s;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(255,115,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ar-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ar-scroll-top:hover,
.ar-scroll-top:focus {
  background: #fff;
  color: #ff7300;
  border-color: #ff7300;
  box-shadow: 0 7px 24px rgba(255,115,0,0.19);
  transform: translateY(-3px) scale(1.05);
}
.ar-scroll-top:active {
  background: #f8f8f8;
  color: #ff7300;
  transform: translateY(0) scale(0.97);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .ar-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
/* =============== SCROLL TO TOP BUTTON END =============== */