/* =============== 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;
}

/* =============== PRELOADER START =============== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#preloader.hidden {
  display: none !important;
}

.preloader-video {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .preloader-video {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .preloader-video {
    max-width: 200px;
  }
}

/* =============== PRELOADER SECTION END =============== */



/* =============== 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 =============== */


/* =============== HERO SECTION START =============== */
#ar-hero-main {
  background: #fafafc;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: var(--nav-height);
  padding: 4rem 0 3rem;
  display: flex;
  align-items: center;
}

/* =============== ANIMATED BACKGROUND =============== */
.animated-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-gradient {
  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-blob {
  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-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-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-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-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;
}

@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); }
}

/* =============== HERO CONTAINER =============== */
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4vw;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* =============== HERO GRID =============== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* =============== LEFT SIDE =============== */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.75rem;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.3rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #11af4b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1a1a1b;
  margin: 0;
  letter-spacing: -0.02em;
}

.title-accent {
  color: #ff7300;
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
}

.hero-subtitle strong {
  color: #1a1a1b;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-orange {
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
}

.stat-green {
  background: rgba(17, 175, 75, 0.1);
  color: #11af4b;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-content strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1b;
  line-height: 1;
}

.stat-content span {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.primary-cta {
  background: #ff7300;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 115, 0, 0.3);
}

.primary-cta:hover {
  background: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 115, 0, 0.4);
}

.secondary-cta {
  background: white;
  color: #11af4b;
  border: 2px solid #11af4b;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.secondary-cta:hover {
  background: #11af4b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(17, 175, 75, 0.3);
}

.hero-cta svg {
  transition: transform 0.3s ease;
}

.primary-cta:hover svg {
  transform: translateX(4px);
}

/* Service Pills */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.service-pill {
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-pill:hover {
  border-color: #ff7300;
  color: #ff7300;
  background: rgba(255, 115, 0, 0.05);
  transform: translateY(-2px);
}

/* =============== RIGHT SIDE - FORM CARD =============== */
.hero-right {
  position: relative;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-tags {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tag-orange,
.tag-green {
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-orange {
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
}

.tag-green {
  background: rgba(17, 175, 75, 0.1);
  color: #11af4b;
}

.form-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1b;
  margin: 0 0 0.5rem 0;
}

.form-header p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
}

.input-field input,
.input-field select {
  padding: 1rem 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.input-field input:focus,
.input-field select:focus {
  outline: none;
  border-color: #ff7300;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.08);
}

.phone-field {
  display: flex;
  align-items: stretch;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phone-field:focus-within {
  border-color: #ff7300;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.08);
}

.phone-field span {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-weight: 700;
  color: #374151;
  background: transparent;
}

.phone-field input {
  border: none;
  background: transparent;
  box-shadow: none;
  padding-left: 0.5rem;
}

.form-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #11af4b;
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(17, 175, 75, 0.3);
  margin-top: 0.5rem;
}

.form-btn:hover {
  background: #0f9d43;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(17, 175, 75, 0.4);
}

.form-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.form-btn svg {
  transition: transform 0.3s ease;
}

.form-btn:hover svg {
  transform: translateX(4px);
}

.form-message {
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.2rem;
  font-weight: 600;
}

.form-message.success-message {
  background-color: #f0fdf4;
  color: #16a34a;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #86efac;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f3f4f6;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

.form-footer svg {
  flex-shrink: 0;
}

/* =============== BOTTOM INFO CARDS =============== */
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orange-icon {
  background: rgba(255, 115, 0, 0.1);
  color: #ff7300;
}

.green-icon {
  background: rgba(17, 175, 75, 0.1);
  color: #11af4b;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-text strong {
  font-size: 1rem;
  color: #1a1a1b;
  font-weight: 700;
}

.info-text span {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-services {
    justify-content: center;
  }

  .form-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #ar-hero-main {
    padding: 3rem 0 2rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .stat-box {
    padding: 0.75rem 1rem;
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
  }
  
  .stat-content strong {
    font-size: 1rem;
  }
  
  .stat-content span {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-cta {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
  
  .hero-services {
    justify-content: center;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }
  
  .blob-1, .blob-2, .blob-3, .blob-4 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  #ar-hero-main {
    padding: 2rem 0 1.5rem;
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .stat-box {
    padding: 0.6rem 0.8rem;
    gap: 0.5rem;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
  }
  
  .stat-content strong {
    font-size: 0.9rem;
  }
  
  .stat-content span {
    font-size: 0.75rem;
  }
  
  .hero-actions {
    width: 100%;
    align-items: stretch;
  }
  
  .hero-cta {
    max-width: 100%;
  }

  .hero-services {
    gap: 0.5rem;
    justify-content: center;
  }

  .service-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  .form-card {
    padding: 1.75rem 1.25rem;
  }

  .form-tags {
    flex-wrap: wrap;
  }
  
  .blob-1, .blob-2, .blob-3, .blob-4 {
    width: 200px;
    height: 200px;
  }
}

/* =============== HERO SECTION END =============== */

/* =============== PARTNERS SECTION START =============== */
#ar-partners-section {
  background: linear-gradient(135deg, #fafafc 0%, #ffffff 100%);
  padding: 4rem 4vw;
  position: relative;
  overflow: hidden;
}

#ar-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 20% 50%, rgba(255, 115, 0, 0.03) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(17, 175, 75, 0.03) 0px, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.partners-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* =============== SECTION HEADER =============== */
.partners-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partners-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(17, 175, 75, 0.1);
  color: #11af4b;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: center;
  transition: all 0.3s ease;
}

.partners-badge:hover {
  background: rgba(17, 175, 75, 0.15);
  transform: scale(1.05);
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1b;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.title-highlight {
  color: #ff7300;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff7300 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partners-title:hover .title-highlight::after {
  opacity: 1;
}

.partners-description {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* =============== SINGLE PARTNER WRAPPER =============== */
.single-partner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

/* =============== PARTNER CARD =============== */
.partner-card {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  max-width: 550px;
  width: 100%;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.partner-card:hover::before {
  opacity: 1;
}

.featured-partner {
  border-color: #ff7300;
  box-shadow: 0 8px 30px rgba(255, 115, 0, 0.15);
}

.featured-partner:hover {
  border-color: #ff7300;
  box-shadow: 0 12px 45px rgba(255, 115, 0, 0.25);
  transform: translateY(-8px);
}

/* =============== PARTNER LOGO =============== */
.partner-logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(255, 115, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.partner-card:hover .partner-logo {
  background: rgba(255, 115, 0, 0.1);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(255, 115, 0, 0.2);
}

.partner-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo-img {
  filter: brightness(1.1);
}

/* =============== PARTNER CONTENT =============== */
.partner-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1b;
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.partner-card > p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* =============== PARTNER FEATURES =============== */
.partner-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 2px solid #f3f4f6;
  border-bottom: 2px solid #f3f4f6;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-item svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-item:hover svg {
  transform: scale(1.15);
}

.feature-item span {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 600;
  line-height: 1.4;
}

/* =============== CTA BUTTON =============== */
.partner-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #ff7300;
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(255, 115, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 2px solid #ff7300;
}

.partner-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.partner-cta-btn:hover {
  background: #e66800;
  border-color: #e66800;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 115, 0, 0.4);
}

.partner-cta-btn:active {
  transform: translateY(0);
}

.partner-cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.partner-cta-btn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.partner-cta-btn:hover svg {
  transform: translateX(4px);
}

.partner-cta-btn span {
  position: relative;
  z-index: 1;
}

/* =============== PARTNERS FOOTER =============== */
.partners-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(17, 175, 75, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(17, 175, 75, 0.1);
  transition: all 0.3s ease;
}

.partners-footer:hover {
  background: rgba(17, 175, 75, 0.1);
  border-color: rgba(17, 175, 75, 0.2);
  transform: translateY(-2px);
}

.partners-footer svg {
  flex-shrink: 0;
  animation: shieldBounce 2s ease-in-out infinite;
}

.partners-footer span {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 600;
  line-height: 1.5;
}

@keyframes shieldBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* =============== RESPONSIVE DESIGN =============== */

/* Tablets: 1024px and below */
@media (max-width: 1024px) {
  #ar-partners-section {
    padding: 3.5rem 4vw;
  }

  .partners-title {
    font-size: 2.2rem;
  }
  
  .partner-card {
    padding: 2.5rem 2rem;
  }
  
  .partner-features {
    gap: 0.9rem;
  }
}

/* Small Tablets: 768px and below */
@media (max-width: 768px) {
  #ar-partners-section {
    padding: 3rem 4vw;
  }

  .partners-container {
    gap: 2.5rem;
  }

  .partners-title {
    font-size: 1.9rem;
  }
  
  .partners-description {
    font-size: 1rem;
  }

  .partner-card {
    padding: 2.25rem 1.75rem;
    gap: 1.25rem;
  }

  .partner-logo {
    width: 100px;
    height: 100px;
  }
  
  .partner-card h3 {
    font-size: 1.5rem;
  }
  
  .partner-features {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.25rem 0;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

/* Mobile Portrait: 600px and below */
@media (max-width: 600px) {
  #ar-partners-section {
    padding: 2.5rem 4vw;
  }

  .partners-header {
    gap: 0.6rem;
  }

  .partners-badge {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }

  .partners-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  
  .partners-description {
    font-size: 0.95rem;
  }

  .partner-card {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
  }
  
  .partner-card h3 {
    font-size: 1.3rem;
  }

  .partner-logo {
    width: 90px;
    height: 90px;
  }
  
  .partner-features {
    padding: 1rem 0;
    gap: 0.75rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .partner-cta-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .partners-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 0.9rem;
    border-radius: 10px;
  }

  .partners-footer span {
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile: 480px and below */
@media (max-width: 480px) {
  #ar-partners-section {
    padding: 2rem 3vw;
  }

  .partners-container {
    gap: 2rem;
  }

  .partners-title {
    font-size: 1.5rem;
  }

  .partners-description {
    font-size: 0.9rem;
  }

  .partner-card {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .partner-logo {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }
  
  .partner-card h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  .partner-card > p {
    font-size: 0.9rem;
  }
  
  .partner-features {
    grid-template-columns: 1fr;
    padding: 0.85rem 0;
    gap: 0.65rem;
  }
  
  .feature-item {
    gap: 0.5rem;
  }

  .feature-item svg {
    width: 14px;
    height: 14px;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
  
  .partner-cta-btn {
    padding: 0.95rem 1.25rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .partner-cta-btn svg {
    width: 16px;
    height: 16px;
  }

  .partners-footer {
    padding: 0.75rem;
    gap: 0.4rem;
  }

  .partners-footer svg {
    width: 18px;
    height: 18px;
  }

  .partners-footer span {
    font-size: 0.75rem;
  }
}

/* =============== PARTNERS SECTION END =============== */




/* =============== ABOUT SECTION START =============== */
#ar-about-section {
  background: var(--c-bg-alt);
  padding: 5rem 4vw;
  position: relative;
  overflow: hidden;
}

.ar-about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* About Header */
.ar-about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ar-about-badge {
  background: var(--c-accent);
  color: var(--c-txt-light);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255,115,0,0.2);
}

.ar-about-title {
  font-size: var(--font-h1); /* 2rem */
  font-weight: var(--font-weight-bold); /* 700 */
  color: var(--c-txt-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ar-about-intro {
  font-size: var(--font-paragraph); /* 1rem */
  color: #6b7280;
  line-height: 1.7;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

/* Mission & Vision Grid */
.ar-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.ar-about-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ar-about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--c-primary);
}

.ar-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f0;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--c-primary);
  transition: all 0.3s ease;
  border: 2px solid var(--c-primary);
}

.ar-about-card:hover .ar-card-icon {
  background: var(--c-primary);
  color: #fff;
  transform: scale(1.05);
}

.ar-card-title {
  font-size: var(--font-h2); /* 1.5rem */
  font-weight: var(--font-weight-bold); /* 700 */
  color: var(--c-txt-main);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ar-card-desc {
  font-size: var(--font-paragraph); /* 1rem */
  color: #6b7280;
  line-height: 1.7;
  font-weight: 400;
}

/* Stats Row */
.ar-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.ar-stat-item {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.ar-stat-item:hover {
  transform: translateY(-4px);
}

.ar-stat-number {
  font-size: var(--font-h1); /* 2rem */
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ar-stat-label {
  font-size: var(--font-paragraph); /* 1rem */
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

/* =============== RESPONSIVE ABOUT SECTION =============== */

/* Tablets: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  #ar-about-section {
    padding: 4rem 4vw;
  }

  .ar-about-container {
    gap: 3rem;
  }

  .ar-about-grid {
    gap: 2rem;
  }

  .ar-about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Small Tablets: 601px - 768px */
@media (min-width: 601px) and (max-width: 768px) {
  #ar-about-section {
    padding: 3.5rem 4vw;
  }

  .ar-about-container {
    gap: 2.5rem;
  }

  .ar-about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ar-about-card {
    padding: 2rem 1.5rem;
  }

  .ar-about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

/* Mobile: 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
  #ar-about-section {
    padding: 3rem 4vw;
  }

  .ar-about-container {
    gap: 2rem;
  }

  .ar-about-title {
    font-size: 1.75rem;
  }

  .ar-about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ar-about-card {
    padding: 1.8rem 1.3rem;
  }

  .ar-card-icon {
    width: 50px;
    height: 50px;
  }

  .ar-about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 2rem 1rem;
  }

  .ar-stat-number {
    font-size: 1.75rem;
  }
}

/* Extra Small Mobile: 320px - 480px */
@media (max-width: 480px) {
  #ar-about-section {
    padding: 2.5rem 4vw;
  }

  .ar-about-container {
    gap: 1.8rem;
  }

  .ar-about-badge {
    font-size: 0.8rem;
    padding: 0.4em 1.2em;
  }

  .ar-about-title {
    font-size: 1.6rem;
  }

  .ar-about-intro {
    font-size: 0.95rem;
  }

  .ar-about-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .ar-about-card {
    padding: 1.5rem 1.2rem;
  }

  .ar-card-icon {
    width: 48px;
    height: 48px;
  }

  .ar-card-title {
    font-size: 1.3rem;
  }

  .ar-card-desc {
    font-size: 0.95rem;
  }

  .ar-about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .ar-stat-number {
    font-size: 1.5rem;
  }

  .ar-stat-label {
    font-size: 0.9rem;
  }
}

/* Very Small Screens: 320px and below */
@media (max-width: 360px) {
  .ar-about-title {
    font-size: 1.5rem;
  }

  .ar-about-card {
    padding: 1.3rem 1rem;
  }

  .ar-stat-number {
    font-size: 1.4rem;
  }
}
/* =============== ABOUT SECTION END =============== */

/* =============== SIP CALCULATOR SECTION START =============== */
#ar-sip-calculator {
  background: var(--c-bg);
  padding: 5rem 4vw;
  position: relative;
}

.ar-sip-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ar-sip-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ar-sip-badge {
  background: var(--c-accent);
  color: white;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ar-sip-title {
  font-size: var(--font-h1);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 0.8rem;
}

.ar-sip-intro {
  font-size: var(--font-paragraph);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Calculator Card */
.ar-sip-main-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}

.ar-sip-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Controls Section */
.ar-sip-controls {
  padding: 3rem;
  border-right: 1px solid #f3f4f6;
}

.ar-controls-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 2rem;
}

.ar-control-item {
  margin-bottom: 2.5rem;
}

.ar-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ar-control-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}

.ar-control-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary);
  font-variant-numeric: tabular-nums;
}

/* Custom Range Slider */
.ar-range-slider {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}

.ar-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,115,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ar-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(255,115,0,0.35);
}

.ar-range-slider::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.ar-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255,115,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ar-range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(255,115,0,0.35);
}

.ar-range-info {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Results Section */
.ar-sip-results {
  padding: 3rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.ar-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.ar-results-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
}

.ar-reset-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.ar-reset-btn:hover {
  background: #e5e7eb;
  color: var(--c-txt-main);
}

/* Donut Chart */
.ar-donut-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 2rem;
}

.ar-donut-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ar-donut-bg {
  fill: none;
  stroke: #f3f4f6;
  stroke-width: 30;
}

.ar-donut-invested {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 30;
  stroke-dasharray: 534;
  stroke-dashoffset: 267;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ar-donut-returns {
  fill: none;
  stroke: var(--c-accent);
  stroke-width: 30;
  stroke-dasharray: 534;
  stroke-dashoffset: 534;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ar-donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ar-donut-total {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-txt-main);
  margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.ar-donut-label {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Value Cards */
.ar-value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ar-value-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.ar-value-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.ar-value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.ar-value-card.invested .ar-value-icon {
  background: rgba(255,115,0,0.1);
  color: var(--c-primary);
}

.ar-value-card.returns .ar-value-icon {
  background: rgba(17,175,75,0.1);
  color: var(--c-accent);
}

.ar-value-info {
  flex: 1;
}

.ar-value-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.ar-value-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-txt-main);
  font-variant-numeric: tabular-nums;
}

/* Info Banner */
.ar-info-banner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  color: #1e40af;
  font-size: 0.85rem;
  line-height: 1.4;
}

.ar-info-banner svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ar-sip-content {
    grid-template-columns: 1fr;
  }

  .ar-sip-controls {
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
  }
}

@media (max-width: 768px) {
  #ar-sip-calculator {
    padding: 3rem 4vw;
  }

  .ar-sip-controls,
  .ar-sip-results {
    padding: 2rem 1.5rem;
  }

  .ar-control-display {
    font-size: 1.3rem;
  }

  .ar-donut-wrapper {
    width: 200px;
    height: 200px;
  }

  .ar-donut-total {
    font-size: 1.5rem;
  }

  .ar-value-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ar-sip-main-card {
    border-radius: 16px;
  }

  .ar-sip-controls,
  .ar-sip-results {
    padding: 1.5rem 1.2rem;
  }

  .ar-results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ar-value-amount {
    font-size: 1.1rem;
  }
}
/* =============== SIP CALCULATOR SECTION END =============== */

/* =============== SERVICES SECTION START =============== */
#ar-services-section {
  background: var(--c-bg);
  padding: 5rem 4vw;
  position: relative;
}

.ar-services-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.ar-services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.ar-services-badge {
  background: var(--c-accent);
  color: var(--c-txt-light);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-services-title {
  font-size: var(--font-h1);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ar-services-intro {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.7;
}

/* Features Grid */
.ar-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.ar-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ar-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--c-primary);
}

.ar-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f0;
  border-radius: 12px;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid var(--c-primary);
}

.ar-feature-card:hover .ar-feature-icon {
  background: var(--c-primary);
  color: #fff;
  transform: scale(1.05);
}

.ar-feature-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.ar-feature-desc {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.6;
}

/* CTA Section */
.ar-services-cta {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ar-cta-content {
  flex: 1;
}

.ar-cta-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 0.5rem;
}

.ar-cta-text {
  font-size: var(--font-paragraph);
  color: #6b7280;
}

.ar-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: var(--font-paragraph);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,115,0,0.2);
  white-space: nowrap;
}

.ar-cta-btn:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17,175,75,0.3);
}

.ar-cta-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ar-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #ar-services-section {
    padding: 3rem 4vw;
  }

  .ar-services-header {
    margin-bottom: 3rem;
  }

  .ar-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .ar-feature-card {
    padding: 1.8rem 1.5rem;
  }

  .ar-feature-icon {
    width: 56px;
    height: 56px;
  }

  .ar-services-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .ar-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ar-services-title {
    font-size: 1.6rem;
  }

  .ar-feature-card {
    padding: 1.5rem 1.2rem;
  }

  .ar-feature-icon {
    width: 52px;
    height: 52px;
  }

  .ar-feature-title {
    font-size: 1.3rem;
  }

  .ar-feature-desc {
    font-size: 0.95rem;
  }

  .ar-services-cta {
    padding: 1.5rem 1.2rem;
  }

  .ar-cta-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 360px) {
  .ar-services-title {
    font-size: 1.5rem;
  }

  .ar-feature-card {
    padding: 1.3rem 1rem;
  }

  .ar-cta-title {
    font-size: 1.2rem;
  }
}
/* =============== SERVICES SECTION END =============== */

/* =============== TESTIMONIALS SECTION START =============== */
#ar-testimonials-section {
  background: var(--c-bg-alt);
  padding: 5rem 4vw;
  position: relative;
}

.ar-testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.ar-testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.ar-testimonials-badge {
  background: var(--c-primary);
  color: var(--c-txt-light);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-testimonials-title {
  font-size: var(--font-h1);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ar-testimonials-intro {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.7;
}

/* Carousel Container */
.ar-testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.ar-testimonials-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.ar-testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Card */
.ar-testimonial-card {
  min-width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.ar-quote-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f0;
  border-radius: 12px;
  color: var(--c-primary);
  margin-bottom: 2rem;
}

.ar-testimonial-text {
  font-size: 1.1rem;
  color: var(--c-txt-main);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.ar-testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 2rem;
  color: #fbbf24;
}

.ar-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ar-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ar-author-info {
  flex: 1;
}

.ar-author-name {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 0.3rem;
}

.ar-author-role {
  font-size: var(--font-paragraph);
  color: #6b7280;
}

/* Carousel Buttons */
.ar-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: var(--c-txt-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ar-prev-btn {
  left: -24px;
}

.ar-next-btn {
  right: -24px;
}

.ar-carousel-btn:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  transform: translateY(-50%) scale(1.1);
}

.ar-carousel-btn:active {
  transform: translateY(-50%) scale(1);
}

/* Carousel Indicators */
.ar-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.ar-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ar-indicator.active {
  background: var(--c-primary);
  width: 32px;
  border-radius: 6px;
}

.ar-indicator:hover {
  background: var(--c-accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ar-carousel-btn {
    width: 44px;
    height: 44px;
  }

  .ar-prev-btn {
    left: -22px;
  }

  .ar-next-btn {
    right: -22px;
  }
}

@media (max-width: 768px) {
  #ar-testimonials-section {
    padding: 3rem 4vw;
  }

  .ar-testimonials-header {
    margin-bottom: 3rem;
  }

  .ar-testimonial-card {
    padding: 2rem 1.5rem;
  }

  .ar-testimonial-text {
    font-size: 1rem;
  }

  .ar-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .ar-prev-btn {
    left: -20px;
  }

  .ar-next-btn {
    right: -20px;
  }
}

@media (max-width: 480px) {
  .ar-testimonials-title {
    font-size: 1.6rem;
  }

  .ar-testimonial-card {
    padding: 1.8rem 1.2rem;
  }

  .ar-quote-icon {
    width: 48px;
    height: 48px;
  }

  .ar-testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .ar-author-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .ar-author-name {
    font-size: 1.3rem;
  }

  .ar-carousel-btn {
    width: 36px;
    height: 36px;
  }

  .ar-prev-btn {
    left: -18px;
  }

  .ar-next-btn {
    right: -18px;
  }
}

@media (max-width: 360px) {
  .ar-testimonials-title {
    font-size: 1.5rem;
  }

  .ar-testimonial-card {
    padding: 1.5rem 1rem;
  }
}
/* =============== TESTIMONIALS SECTION END =============== */

/* =============== FAQ SECTION START =============== */
#ar-faq-section {
  background: var(--c-bg);
  padding: 5rem 4vw;
  position: relative;
}

.ar-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.ar-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ar-faq-badge {
  background: var(--c-accent);
  color: var(--c-txt-light);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-faq-title {
  font-size: var(--font-h1);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ar-faq-intro {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.7;
}

/* Accordion */
.ar-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ar-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ar-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.ar-faq-item.active {
  border-color: var(--c-primary);
}

.ar-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 1rem;
}

.ar-faq-question:hover {
  background: #fafafa;
}

.ar-faq-item.active .ar-faq-question {
  background: #fff5f0;
}

.ar-question-text {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  flex: 1;
}

.ar-faq-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  color: var(--c-txt-main);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ar-faq-item.active .ar-faq-icon {
  background: var(--c-primary);
  color: #fff;
  transform: rotate(180deg);
}

.ar-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ar-faq-item.active .ar-faq-answer {
  max-height: 500px;
}

.ar-answer-content {
  padding: 0 2rem 2rem 2rem;
}

.ar-answer-content p {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.ar-faq-cta {
  margin-top: 4rem;
  text-align: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem 2rem;
}

.ar-faq-cta-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 0.5rem;
}

.ar-faq-cta-text {
  font-size: var(--font-paragraph);
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Enhanced WhatsApp CTA Button */
.ar-faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 2.4rem;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: var(--font-paragraph);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,115,0,0.2);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.ar-faq-cta-btn:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17,175,75,0.3);
}

.ar-faq-cta-btn:active {
  transform: translateY(0);
}

.ar-faq-cta-btn svg {
  transition: transform 0.3s ease;
}

.ar-faq-cta-btn:hover svg {
  transform: rotate(-10deg);
}

@keyframes faq-ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Accessibility */
.ar-faq-question:focus,
.ar-faq-cta-btn:focus {
  outline: 2px solid var(--c-primary);
  outline-offset: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  #ar-faq-section {
    padding: 3rem 4vw;
  }

  .ar-faq-header {
    margin-bottom: 3rem;
  }

  .ar-faq-question {
    padding: 1.2rem 1.5rem;
  }

  .ar-question-text {
    font-size: 1.3rem;
  }

  .ar-faq-icon {
    width: 36px;
    height: 36px;
  }

  .ar-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .ar-faq-cta {
    padding: 2rem 1.5rem;
  }
  .ar-faq-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ar-faq-title {
    font-size: 1.6rem;
  }

  .ar-faq-question {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }

  .ar-question-text {
    font-size: 1.1rem;
  }

  .ar-faq-icon {
    width: 32px;
    height: 32px;
  }

  .ar-answer-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .ar-answer-content p {
    font-size: 0.95rem;
  }

  .ar-faq-cta {
    padding: 1.8rem 1.2rem;
  }

  .ar-faq-cta-title {
    font-size: 1.3rem;
  }
  .ar-faq-cta-btn {
    font-size: 0.94rem;
    padding: 0.9rem 0.6rem;
  }
}

@media (max-width: 360px) {
  .ar-faq-title {
    font-size: 1.5rem;
  }

  .ar-question-text {
    font-size: 1rem;
  }
}
/* =============== FAQ SECTION END =============== */


/* =============== CONTACT SECTION START =============== */
#ar-contact-section {
  background: var(--c-bg-alt);
  padding: 3rem 4vw;
  position: relative;
}

.ar-contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ar-contact-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.ar-contact-badge {
  background: var(--c-primary);
  color: var(--c-txt-light);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-contact-title {
  font-size: var(--font-h1);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.ar-contact-intro {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Grid - 3 Cards Layout */
.ar-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Form Wrapper (Card 1) */
.ar-form-wrapper {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ar-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ar-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.ar-form-field {
  display: flex;
  flex-direction: column;
}

.ar-form-field label {
  font-size: var(--font-paragraph);
  font-weight: 600;
  color: var(--c-txt-main);
  margin-bottom: 0.4rem;
}

.ar-form-field input,
.ar-form-field select,
.ar-form-field textarea {
  padding: 0.7rem 1rem;
  font-size: var(--font-paragraph);
  color: var(--c-txt-main);
  background: var(--c-bg);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.ar-form-field input:focus,
.ar-form-field select:focus,
.ar-form-field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,115,0,0.1);
}

.ar-form-field input.error,
.ar-form-field select.error,
.ar-form-field textarea.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.ar-form-field textarea {
  resize: vertical;
  min-height: 85px;
  line-height: 1.6;
}

.ar-error {
  font-size: 0.85rem;
  color: #ef4444;
  margin-top: 0.25rem;
  min-height: 0.8rem;
  display: block;
}

.ar-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: var(--font-paragraph);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,115,0,0.2);
  margin-top: 0.3rem;
}

.ar-submit-btn:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17,175,75,0.3);
}

.ar-submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.ar-form-status {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: var(--font-paragraph);
  text-align: center;
  display: none;
  margin-top: 0.4rem;
}

.ar-form-status.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.ar-form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Info Card (Card 2) */
.ar-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ar-info-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin-bottom: 1rem;
}

.ar-info-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ar-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem;
  background: var(--c-bg);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ar-info-item:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateX(4px);
}

.ar-info-icon {
  width: 40px;
  height: 40px;
  background: #fff5f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
  border: 2px solid var(--c-primary);
}

.ar-info-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.ar-info-value {
  font-size: var(--font-paragraph);
  color: var(--c-txt-main);
  font-weight: 600;
}

/* CTA Card (Card 3) - Full Width Below */
.ar-cta-card {
  grid-column: 1 / -1; /* Span full width */
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.ar-cta-title {
  font-size: var(--font-h2);
  font-weight: var(--font-weight-bold);
  color: var(--c-txt-main);
  margin: 0;
}

.ar-cta-text {
  font-size: var(--font-paragraph);
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.ar-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--c-accent);
  font-weight: 600;
}

.ar-cta-badge svg {
  color: var(--c-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .ar-contact-grid {
    grid-template-columns: 1fr;
  }

  .ar-cta-card {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  #ar-contact-section {
    padding: 2.5rem 4vw;
  }

  .ar-contact-header {
    margin-bottom: 1.5rem;
  }

  .ar-form-wrapper,
  .ar-info-card,
  .ar-cta-card {
    padding: 1.3rem;
  }

  .ar-form-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  #ar-contact-section {
    padding: 2rem 4vw;
  }

  .ar-contact-title {
    font-size: 1.6rem;
  }

  .ar-form-wrapper,
  .ar-info-card,
  .ar-cta-card {
    padding: 1.2rem;
  }

  .ar-info-title,
  .ar-cta-title {
    font-size: 1.3rem;
  }

  .ar-info-icon {
    width: 36px;
    height: 36px;
  }
}
/* =============== CONTACT SECTION END =============== */


/* =============== 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 =============== */








