/* ═══════════════════════════════════════════════
   BUILDPROX — Professional CSS
   Mobile-first, fully responsive
═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --orange: #E85D04;
  --orange-dark: #C44C02;
  --orange-light: #FF7A20;
  --navy: #0D1B2A;
  --navy-mid: #1B2E45;
  --navy-light: #243B55;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-light: #EEF0F4;
  --gray-mid: #9CA3AF;
  --gray-dark: #4B5563;
  --text: #111827;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ── Shared Labels ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 93, 4, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-label.light {
  color: #ffd6b0;
  background: rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.main-logo {
  width: 140px;
  height: auto;
}

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

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links li a:hover {
  color: var(--orange);
  background: rgba(232, 93, 4, 0.06);
}

.nav-links li a.nav-cta {
  background: var(--orange);
  color: white;
  padding: 9px 20px;
  border-radius: 20px;
}

.nav-links li a.nav-cta:hover {
  background: var(--orange-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("images/hero_backgroud.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 27, 42, 0.88) 50%, rgba(13, 27, 42, 0.55));
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 40px;
  color: white;
}

.left {
  flex: 1;
  max-width: 580px;
  animation: fadeLeft 1s ease both;
}

.left h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: white;
}

.left h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange-light);
}

.left p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.hero-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4);
}

/* Form Box */
.form-box {
  background: white;
  padding: 32px 28px;
  width: 380px;
  min-width: 320px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  animation: fadeRight 1s ease both;
  flex-shrink: 0;
}

.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.form-header p {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 4px;
}

.form-box input {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 4px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  background: var(--off-white);
}

.form-box input:focus {
  border-color: var(--orange);
  background: white;
}

.error-msg {
  display: block;
  color: #e53e3e;
  font-size: 11px;
  margin: 0 0 8px 4px;
  min-height: 14px;
}

.input-error {
  border-color: #e53e3e !important;
  background: #fff5f5 !important;
}

.call-btn {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  margin-top: 4px;
}

.call-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.call-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ═══════════════════════════════════
   FEATURES
═══════════════════════════════════ */
.features {
  background: white;
}

.feature-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.feature-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-heading {
  flex: 1;
  min-width: 220px;
}

.feature-heading h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.3;
}

.feature-heading h3 .last-line {
  white-space: nowrap;
  display: block;
}

.logooimage {
  height: 1em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  margin-bottom: 4px;
}

.feature-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 2;
  justify-content: flex-end;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 20px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-light);
  width: 130px;
  transition: all 0.3s;
  gap: 4px;
}

.feature-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-item .icon {
  width: 48px;
  height: auto;
  margin-bottom: 6px;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.feature-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-dark);
  text-align: center;
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about {
  background: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 100%);
  padding: 90px 40px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.logo-image {
  width: 480px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s;
}

.logo-image:hover {
  transform: scale(1.02);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}

.about-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  margin-top: 8px;
}

.about-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services {
  background: var(--navy);
  color: white;
  padding: 90px 40px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.service-type {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--orange-light);
  margin: 40px 0 20px;
  text-align: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: var(--orange);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ═══════════════════════════════════
   TRUST
═══════════════════════════════════ */
.trust {
  background: var(--off-white);
  padding: 90px 40px;
}

.trust-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-text {
  flex: 1;
  min-width: 260px;
}

.trust-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 10px;
}

.trust-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 16px;
}

.trust-text p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.85;
}

.trust-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.trust-item {
  background: white;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1.5px solid var(--gray-light);
  transition: all 0.3s;
}

.trust-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-item img {
  width: 48px;
  height: auto;
  margin: 0 auto 10px;
}

.trust-item p {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ═══════════════════════════════════
   PACKAGES
═══════════════════════════════════ */
.packages-header {
  text-align: center;
  padding: 80px 40px 40px;
  background: white;
}

.nameimage {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto 16px auto;
}

.packages-header h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-dark);
  margin: 8px 0;
}

.packages-header p {
  font-size: 14px;
  color: var(--gray-mid);
}

.package-grid {
  background: white;
  padding: 0 40px 80px;
}

.packages-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.package-col {
  display: flex;
  flex-direction: column;
}

.package-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1.5px solid var(--gray-light);
  flex: 1;
  transition: all 0.3s;
  position: relative;
  overflow: visible;
}

.package-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pkg-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gray-light);
  color: var(--gray-dark);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.pkg-badge.active {
  background: var(--orange);
  color: white;
}

.package-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.pkg-price span {
  font-size: 14px;
  color: var(--gray-mid);
  font-family: var(--font-body);
}

.pkg-note {
  font-size: 11px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.package-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

.pkg-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pkg-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-dark);
  user-select: none;
}

.pkg-item-header:hover span {
  color: var(--orange);
}

.pkg-detail {
  display: none;
  padding: 8px 10px 10px 10px;
  background: #fff8f5;
  border-left: 3px solid var(--orange);
  border-radius: 0 0 6px 6px;
  margin-bottom: 4px;
}

.pkg-detail ul {
  padding-left: 16px;
  margin: 0;
}

.pkg-detail ul li {
  font-size: 12px;
  color: var(--gray-dark);
  padding: 3px 0;
  border: none !important;
  display: list-item !important;
  justify-content: unset !important;
  line-height: 1.5;
  list-style: disc;
}

.pkg-detail.open {
  display: block;
}

.plus-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: white;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: 1;
}

.plus-btn:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: scale(1.15);
}

.plus-btn.open {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.contact-btn {
  margin-top: 12px;
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.contact-btn:hover {
  background: var(--orange);
}

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.process-steps {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 90px 50px;
  background: var(--off-white);
}

.process-left {
  width: 34%;
  flex-shrink: 0;
}

.process-left h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-left p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
}

.process-right {
  flex: 1;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-container {
  flex: 1;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.step-card {
  flex: 0 0 33.333%;
  padding: 0 8px;
}

.step-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
}

.step-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-top: 10px;
}

.slide-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.slide-btn:hover {
  background: var(--orange);
}

/* ═══════════════════════════════════
   PROJECTS
═══════════════════════════════════ */
.project-grid {
  padding: 80px 40px;
  background: var(--gray-light);
}

.project-header {
  text-align: center;
  margin-bottom: 40px;
}

.project-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.02em;
  color: var(--navy);
}

.project-header p {
  color: var(--gray-mid);
  font-size: 15px;
  margin-top: 8px;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card p {
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.Testimonial-section {
  display: flex;
  background: var(--navy);
  padding: 80px 50px;
  gap: 60px;
  align-items: center;
  flex-wrap: nowrap;
}

.Testimonial-left {
  width: 320px;
  flex-shrink: 0;
}

.Testimonial-left h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 10px;
  line-height: 1.1;
}

.Testimonial-left p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 0;
}
.testi-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.testi-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.testi-nav-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.testi-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.testi-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}
/* Slider container */
.testi-slider-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: white;
  border-radius: 18px;
  padding: 34px 30px;
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 58px;
  color: var(--orange);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}
.testi-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.testi-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.85;
  margin: 0 0 22px;
}
.testi-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testi-stars {
  display: block;
  color: var(--orange);
  font-size: 13px;
  margin-top: 2px;
  letter-spacing: 2px;
}

.testi-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 18px;
  overflow: hidden;
}
.testi-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}












/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-section {
  display: flex;
  min-height: 100vh;
  position: relative;
  background: url('images/back.jpg') no-repeat center center/cover;
}

.contact-left {
  flex: 1;
  background: none;
  min-height: 400px;
}

.contact-content {
  flex: 1;
  background: rgba(13, 27, 42, 0.75);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 50px;
  text-align: center;
}

.contact-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.contact-content>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}
/* ── Orange focus for hero & contact forms ── */
.form-box input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange) !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
  outline: none;
}/* ── Orange focus for hero & contact forms ── */
.form-box input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange) !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
  outline: none;
}
.call-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35); /* add this line */
}

.contact-form {
  background: white;
  padding: 22px;
  border-radius: 18px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--off-white);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: white;
}

.contact-form textarea {
  resize: none;
  height: 65px;
}

.contact-form .error-msg {
  display: block;
  color: #e53e3e;
  font-size: 11px;
  margin: 0 0 6px 4px;
  min-height: 14px;
}

.contact-form button {
  background: var(--navy);
  color: white;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  margin-top: 8px;
}

.contact-form button:hover {
  background: var(--orange);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--navy);
}

/* ═══════════════════════════════════════════════════════
   PROFESSIONAL FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(232, 93, 4, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(232, 93, 4, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
}

.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
}

/* ── Brand Column ── */
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.08em;
  color: white;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 300px;
}

/* ── Social Icons ── */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.social-icon:hover {
  transform: translateY(-4px);
  border-color: transparent;
  color: white;
}

.si-fb:hover {
  background: #1877F2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.si-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.si-li:hover {
  background: #0077B5;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.si-tw:hover {
  background: #111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.si-yt:hover {
  background: #FF0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.si-wa:hover {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ── Column Titles ── */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Quick Links ── */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  padding: 5px 0;
}

.footer-links-list li a i {
  font-size: 10px;
  color: var(--orange);
  transition: transform 0.2s;
}

.footer-links-list li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-links-list li a:hover i {
  transform: translateX(3px);
}

/* ── Contact Info ── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 14px;
}

.footer-phone-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: color 0.2s;
}

.footer-phone-link:hover {
  color: white;
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
  transition: all 0.2s;
}

.footer-phone-link:hover .wa-badge {
  background: rgba(37, 211, 102, 0.2);
}

.footer-email-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email-link:hover {
  color: var(--orange);
}

.footer-main::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.1) 70%, transparent);
  margin-top: 48px;
}

/* ── Bottom Bar ── */
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 40px;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════
   FOOTER FULL-WIDTH EXPANDABLE PANELS
═══════════════════════════════════════════════════════ */
.footer-fullpanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  border-top: 1px solid transparent;
  margin-top: 0;
}

.footer-fullpanel.open {
  max-height: 1000px;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 32px;
}

.footer-fullpanel-inner {
  padding: 28px 0 16px 0;
}

.footer-fullpanel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-fullpanel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
}

.footer-fullpanel-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.footer-fullpanel-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-fullpanel-inner>p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px 0;
  max-width: 860px;
}

.footer-fullpanel-sub {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 10px;
  margin-top: 4px;
}

/* ── Testimonials grid inside voices panel ── */
.footer-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer-tcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s;
}

.footer-tcard:hover {
  border-color: rgba(232, 93, 4, 0.3);
}

.footer-tcard-quote {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin: 0 0 14px 0;
  flex: 1;
}

.footer-tcard-quote::before {
  content: '\201C';
  color: var(--orange);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.footer-tcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-tcard-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-tcard-author strong {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-tcard-author em {
  display: block;
  font-size: 11px;
  color: var(--orange);
  font-style: normal;
}

/* ── Chevron animation for expandable links ── */
.footer-chevron {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 10px;
}

.footer-link-open .footer-chevron {
  transform: rotate(90deg);
  color: var(--orange);
}

.footer-link-open {
  color: white !important;
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════
   TABLET — max 1024px
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar {
    padding: 14px 24px;
  }

  .packages-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    gap: 40px;
  }

  .logo-image {
    width: 380px;
  }

  .feature-inner {
    justify-content: center;
  }

  .feature-heading {
    text-align: center;
    flex: 0 0 100%;
  }

  .feature-items {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-fullpanel.open {
    max-height: 1400px;
  }
}

/* ═══════════════════════════════════
   MOBILE — max 768px
═══════════════════════════════════ */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-top: 1px solid var(--gray-light);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
  }

  .nav-links li a.nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .content {
    flex-direction: column;
    padding: 40px 20px;
    align-items: stretch;
  }

  .left {
    max-width: 100%;
  }

  .form-box {
    width: 100%;
    min-width: 0;
    padding: 24px 20px;
  }

  .feature-box {
    padding: 24px 16px;
  }

  .feature-inner {
    flex-direction: column;
    gap: 20px;
  }

  .feature-heading {
    text-align: center;
  }

  .feature-heading h3 {
    font-size: 20px;
  }

  .logooimage {
    height: 1em;
    width: auto;
  }

  .feature-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .feature-item {
    width: 100%;
    padding: 16px 10px;
  }

  .about {
    padding: 50px 20px;
  }

  .about-inner {
    flex-direction: column;
    gap: 30px;
  }

  .logo-image {
    width: 100%;
  }

  .services {
    padding: 50px 16px;
  }

  .trust {
  padding: 50px 20px;
}

.trust-inner {
  width: 100%;
}

.trust-grid {
  width: 100%;
}
  .trust-inner {
    flex-direction: column;
    gap: 30px;
  }
@media (max-width: 768px) {
  .trust-item {
    width: 100%;
    text-align: center;
  }

  .trust-item img {
    margin: 0 auto 10px;
    display: block;
  }
}
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  }
  /* Center the last odd item */
.trust-grid .trust-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 180px;
  width: 100%;
}

  .packages-header {
    padding: 50px 20px 24px;
  }

  .package-grid {
    padding: 0 16px 50px;
  }

  .packages-scroll {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
  }

  .process-left {
    width: 100%;
    text-align: center;
  }

  .process-right {
    width: 100%;
  }

  .slider-container {
    width: 100%;
  }

  .step-card {
    flex: 0 0 100%;
    padding: 0 4px;
  }

  .step-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: white;
    border-radius: var(--radius);
  }

  .slider-track {
    width: auto;
  }

  .project-grid {
    padding: 50px 16px;
  }

  .project-cards {
    grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  justify-items: stretch;
  }

  .Testimonial-section {
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
  }

  .Testimonial-left {
    max-width: 100%;
  }

  .testimonial-right {
    flex-direction: column;
    align-items: stretch;
  }

  .small-card {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .main-card {
    max-width: 100%;
  }

  .contact-section {
    flex-direction: column;
    min-height: auto;
  }

  .contact-left {
    height: 220px;
    flex: none;
  }

  .contact-content {
    padding: 40px 20px;
  }

  .contact-form {
    max-width: 100%;
  }

  /* Footer mobile */
  .footer-main {
    padding: 40px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 16px 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-monials-grid {
    grid-template-columns: 1fr;
  }

  .footer-fullpanel.open {
    max-height: 2400px;
  }

  .footer-fullpanel-inner {
    padding: 20px 0 10px 0;
  }

  /* pkg slider viewport fix */
  #panel-homes .pkg-slider-viewport,
  #panel-pg .pkg-slider-viewport {
    overflow: hidden;
    width: 100%;
  }

  #homesTrack,
  #pgTrack {
    flex-wrap: nowrap;
  }

  #homesTrack .package-col,
  #pgTrack .package-col {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  #homesTrack .packages-scroll,
  #pgTrack .packages-scroll {
    display: contents;
  }
}

/* ── Testimonial Mobile ── */
@media (max-width: 768px) {
  .Testimonial-section {
    flex-direction: column;
    padding: 50px 20px;
    gap: 28px;
    flex-wrap: wrap;
  }

  .Testimonial-left {
    width: 100%;
  }

  .Testimonial-left h3 {
    font-size: 28px;
  }

  .testi-dots {
    margin-top: 16px;
  }

  .testi-nav-row {
    margin-top: 14px;
  }

  .testi-slider-wrap {
    width: 100%;
  }

  .testi-card {
    padding: 24px 20px;
  }

  .testi-quote {
    font-size: 46px;
  }

  .testi-title {
    font-size: 15px;
  }
}
/* ═══════════════════════════════════
   SMALL MOBILE — max 400px
═══════════════════════════════════ */
@media (max-width: 400px) {
  .feature-item {
    padding: 12px 8px;
  }

  .feature-num {
    font-size: 18px;
  }

  .feature-label {
    font-size: 11px;
  }

  .pkg-price {
    font-size: 28px;
  }

  .footer-grid {
    gap: 24px;
  }
}

/* ── Commercial Slider Layout ── */
.comm-slider-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0 16px;
}

.comm-slider-viewport {
  flex: 1;
  overflow: hidden;
}

.comm-slider-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.comm-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  margin-right: 20px;
}

.comm-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  transition: background 0.2s, transform 0.15s;
  user-select: none;
}

.comm-arrow:hover {
  background: var(--orange);
  transform: scale(1.08);
}

.comm-arrow:active {
  transform: scale(0.95);
}

.comm-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.comm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.comm-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.comm-dot:hover {
  background: var(--orange-light);
}

@media (max-width: 1024px) {
  .comm-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .comm-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .comm-arrow {
    margin-top: 80px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
/* ── FOOTER VISIBILITY FIX ── */
.site-footer {
  background: #0D1B2A !important;
  color: rgba(255,255,255,0.75) !important;
  overflow: visible !important;
}

.site-footer::before {
  display: none !important;
}

.footer-logo-text {
  color: #ffffff !important;
}

.footer-logo-sub {
  color: #E85D04 !important;
}

.footer-desc {
  color: rgba(255,255,255,0.55) !important;
}

.footer-col-title {
  color: #E85D04 !important;
}

.footer-links-list li a {
  color: rgba(255,255,255,0.55) !important;
}

.footer-links-list li a:hover {
  color: #ffffff !important;
}

.footer-contact-list li {
  color: rgba(255,255,255,0.55) !important;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35) !important;
}

.footer-bottom strong {
  color: rgba(255,255,255,0.55) !important;
}

.footer-bottom-right {
  color: rgba(255,255,255,0.35) !important;
}

.footer-fullpanel-label {
  color: #E85D04 !important;
}

.footer-fullpanel-inner > p {
  color: rgba(255,255,255,0.6) !important;
}

.footer-tcard {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.footer-tcard-quote {
  color: rgba(255,255,255,0.6) !important;
}

.footer-tcard-author strong {
  color: rgba(255,255,255,0.9) !important;
}

.social-icon {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}

.footer-contact-icon {
  background: rgba(232,93,4,0.2) !important;
  border: 1px solid rgba(232,93,4,0.35) !important;
  color: #E85D04 !important;
}

.footer-accent-bar {
  background: linear-gradient(90deg, #E85D04 0%, #FF7A20 50%, #E85D04 100%) !important;
  height: 4px !important;
}

.footer-main::after {
  background: rgba(255,255,255,0.1) !important;
}

/* ── FOOTER COMPLETE FIX ── */
.footer-main {
  background: #0D1B2A !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-grid {
  background: #0D1B2A !important;
}

.footer-logo-text {
  color: #ffffff !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 32px !important;
  letter-spacing: 0.08em !important;
}

.footer-logo-sub {
  color: #E85D04 !important;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-col-title {
  color: #E85D04 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-links-list li a {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-links-list li a:hover {
  color: #ffffff !important;
}

.footer-contact-list li {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-contact-icon {
  background: rgba(232, 93, 4, 0.2) !important;
  border: 1px solid rgba(232, 93, 4, 0.4) !important;
  color: #E85D04 !important;
}

.social-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.footer-fullpanel {
  background: #0D1B2A !important;
}

.footer-fullpanel-inner > p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-tcard {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-tcard p,
.footer-tcard-quote {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-tcard-author strong {
  color: rgba(255, 255, 255, 0.9) !important;
}
 .testi-dots { display:flex; gap:8px; margin-top:20px; }
.testi-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.2); border:none; cursor:pointer; padding:0; transition:all 0.3s; }
.testi-dot.active { background:#E85D04; transform:scale(1.3); }
.testi-quote { font-family:'DM Serif Display',serif; font-size:52px; color:#E85D04; line-height:0.6; display:block; margin-bottom:8px; }
.testi-title { font-weight:700; color:var(--navy); font-size:15px; margin-bottom:10px; }
.testi-author-row { display:flex; align-items:center; gap:12px; padding-top:14px; border-top:1px solid var(--gray-light); margin-top:16px; }
.testi-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,#E85D04,#C44C02); color:#fff; font-size:15px; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testi-stars { display:block; color:#E85D04; font-size:12px; margin-top:2px; }
.testi-nav-btn { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18); color:#fff; cursor:pointer; font-size:22px; display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.testi-nav-btn:hover { background:#E85D04; border-color:#E85D04; }


.testi-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  line-height: 1;
}

.testi-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
}

.testi-nav-btn:active {
  transform: scale(0.95);
}