/* ==========================================================================
   Dublux Properties — Home page styles
   ========================================================================== */

/* ---------- VIDEO HERO ---------- */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.video-hero video.loaded { opacity: 1; }

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.video-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: hero-item-in 0.8s ease-out 0.3s forwards;
}

@media (min-width: 768px) {
  .video-hero-content h1 { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .video-hero-content h1 { font-size: 6rem; }
}

.video-hero-content h1 .grad {
  background: linear-gradient(to right, var(--blue-100), #fff, #bfdbfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-hero-content h1 .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--amber-300);
}

.video-hero-content p {
  color: rgba(239, 246, 255, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: hero-item-in 0.8s ease-out 0.5s forwards;
}

@media (min-width: 768px) {
  .video-hero-content p { font-size: 1.25rem; }
}

.video-hero-cta {
  margin-top: 2rem;
  opacity: 0;
  animation: hero-item-in 0.8s ease-out 0.7s forwards;
}

@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.explore-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: var(--navy-deep);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  overflow: hidden;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
  transform: translateY(-4px) scale(1.05);
}

.explore-btn .explore-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--gray-100);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.explore-btn .explore-arrow svg { width: 1rem; height: 1rem; }

.explore-btn:hover .explore-arrow {
  background: var(--navy-deep);
  color: #fff;
  transform: rotate(45deg);
}

.explore-btn .explore-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-12deg);
  transition: left 0.7s ease;
}

.explore-btn:hover .explore-shimmer { left: 100%; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  width: 100%;
  background: linear-gradient(to bottom right, #fff, #f0f5ff, #e6eeff);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230b2a59' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-thread {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-thread path {
  stroke-dasharray: 200;
  animation: thread-draw 8s ease-in-out infinite;
}

@keyframes thread-draw {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(219, 234, 254, 0.4), rgba(191, 219, 254, 0.3));
  backdrop-filter: blur(4px);
  animation: float-shape ease-in-out infinite;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, -30px) rotate(180deg); }
}

.about-glow-tr,
.about-glow-bl {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(64px);
}

.about-glow-tr { top: -10rem; right: -10rem; background: rgba(96, 165, 250, 0.1); }
.about-glow-bl { bottom: -10rem; left: -10rem; background: rgba(147, 197, 253, 0.1); }

.about-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 1024px) {
  .about-inner { grid-template-columns: 1fr 1fr; }
}

.about-badge {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: var(--blue-50);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--blue-100);
  margin-bottom: 2rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .about-title { font-size: 3.75rem; }
}

.about-title .grad {
  background: linear-gradient(to right, #0b2a59, var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-title .underlined {
  position: relative;
  display: inline-block;
}

.about-title .underlined::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(to right, var(--blue-500), #93c5fd);
  border-radius: 999px;
  transition: width 1s ease 0.8s;
}

.reveal.is-visible .about-title .underlined::after,
.about-text.is-visible .about-title .underlined::after {
  width: 200px;
}

.about-paragraph {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.about-paragraph .em {
  font-weight: 600;
  color: var(--blue-600);
}

.about-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  background: linear-gradient(to right, #0b2a59, var(--blue-600));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.about-cta .arrow {
  display: inline-block;
  animation: nudge-x 1.5s ease-in-out infinite;
}

@keyframes nudge-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.about-image-wrap {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

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

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: 24px;
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), transparent);
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent 40%);
}

.about-deco-1,
.about-deco-2 {
  position: absolute;
  z-index: -1;
  filter: blur(24px);
}

.about-deco-1 {
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 16px;
  background: linear-gradient(to bottom right, rgba(96, 165, 250, 0.2), rgba(37, 99, 235, 0.2));
}

.about-deco-2 {
  top: -1.5rem;
  right: -1.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 24px;
  background: linear-gradient(to top right, rgba(147, 197, 253, 0.1), rgba(59, 130, 246, 0.1));
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  width: 100%;
  background: linear-gradient(to bottom, #000, var(--gray-900), #000);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 1.5rem;
}

.services-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid rgba(55, 65, 81, 0.4);
  color: var(--gray-300);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.services-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 2rem;
  background: linear-gradient(to right, #fff, var(--gray-200), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .services-header h2 { font-size: 4.5rem; }
}

.services-header p {
  font-size: 1.25rem;
  color: var(--gray-400);
  max-width: 48rem;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

.services-card-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}

.services-glow {
  position: absolute;
  inset: -2.5rem;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(64px);
  border-radius: 24px;
  animation: services-pulse 6s ease-in-out infinite;
}

@keyframes services-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.services-card {
  position: relative;
  background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(55, 65, 81, 0.4);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .services-card { padding: 4rem; }
}

.services-card-body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .services-card-body { flex-direction: row; }
}

.services-main { flex: 2; }

.services-main.switching {
  animation: service-switch 0.5s ease;
}

@keyframes service-switch {
  from { opacity: 0; transform: translateX(60px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.services-main-head {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.services-number {
  width: 8rem;
  height: 8rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.services-number span {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  font-family: ui-monospace, monospace;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.services-title-block h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 768px) {
  .services-title-block h3 { font-size: 3rem; }
}

.services-title-underline {
  height: 4px;
  background: var(--gray-600);
  border-radius: 999px;
  margin-top: 0.75rem;
}

.services-desc {
  color: var(--gray-300);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.services-explore {
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gray-700), var(--gray-900));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(55, 65, 81, 0.4);
  transition: transform 0.2s ease;
}

.services-explore:hover { transform: scale(1.05); }
.services-explore:active { transform: scale(0.95); }

.services-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-list h4 {
  color: var(--gray-400);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.services-list-item {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.3);
  background: rgba(17, 24, 39, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services-list-item:hover {
  background: rgba(31, 41, 55, 0.4);
  transform: translateX(8px);
}

.services-list-item.active {
  background: rgba(31, 41, 55, 0.7);
  border-color: var(--gray-600);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.services-list-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gray-800);
  color: var(--gray-400);
  flex-shrink: 0;
}

.services-list-item.active .services-list-num {
  background: var(--gray-700);
  color: #fff;
}

.services-list-item h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- WHY INVEST ---------- */
.why-invest {
  width: 100%;
  background: #fff;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .why-invest { padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 1024px) {
  .why-invest { padding-left: 5rem; padding-right: 5rem; }
}

.why-invest-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 70vh;
}

@media (min-width: 1024px) {
  .why-invest-inner { grid-template-columns: 1fr 1fr; }
}

.why-invest-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-invest-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .why-invest-content h2 { font-size: 3.75rem; }
}

.why-invest-list {
  margin-bottom: 3rem;
}

.why-invest-list li {
  position: relative;
  color: var(--gray-700);
  font-size: 1.25rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (min-width: 768px) {
  .why-invest-list li { font-size: 1.5rem; }
}

.reveal.is-visible .why-invest-list li {
  opacity: 1;
  transform: translateX(0);
}

.why-invest-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--blue-600);
  font-size: 1.5rem;
  line-height: 1;
}

.outline-btn {
  align-self: flex-start;
  border: 1px solid var(--gray-900);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6px;
  color: var(--gray-900);
  background: transparent;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .outline-btn { font-size: 1.25rem; }
}

.outline-btn:hover {
  background: var(--gray-900);
  color: #fff;
}

.why-invest-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- UPCOMING LOCATIONS ---------- */
.locations-section {
  width: 100%;
  background: #000;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.locations-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.locations-header h4 {
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.locations-header .rule {
  width: 5rem;
  height: 2px;
  background: #fff;
  margin: 0 auto 1.5rem;
}

.locations-header h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.locations-header p {
  color: var(--gray-400);
  margin-top: 1rem;
}

.locations-slider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.locations-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 5;
  transition: border-color 0.2s ease;
}

.locations-arrow:hover { border-color: #fff; }

.locations-arrow.prev { left: 0; transform: translate(-50%, -50%); }
.locations-arrow.next { right: 0; transform: translate(50%, -50%); }

@media (max-width: 1400px) {
  .locations-arrow.prev { left: 1rem; transform: translate(0, -50%); }
  .locations-arrow.next { right: 1rem; transform: translate(0, -50%); }
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 640px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
}

.locations-grid.sliding-out-left { opacity: 0; transform: translateX(-40px); }
.locations-grid.sliding-out-right { opacity: 0; transform: translateX(40px); }
.locations-grid.sliding-in-left { opacity: 0; transform: translateX(40px); transition: none; }
.locations-grid.sliding-in-right { opacity: 0; transform: translateX(-40px); transition: none; }

.location-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-10px);
}

.location-card-img {
  height: 16rem;
  overflow: hidden;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-card-img img { transform: scale(1.1); }

.location-card-body { padding: 1.5rem; }

.location-card-body h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.location-card-body p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0.5rem 0 1.5rem;
}

.location-enquiry {
  width: 100%;
  padding: 0.75rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.location-enquiry:hover { background: var(--gray-200); }

.locations-dots {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 0.75rem;
}

.locations-dot {
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.locations-dot.active {
  width: 2rem;
  background: #fff;
}

/* ---------- WHY CHOOSE ---------- */
.why-choose {
  width: 100%;
  background: #f4f5f7;
  padding: 3.5rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-choose { padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 1024px) {
  .why-choose { padding-left: 5rem; padding-right: 5rem; }
}

.why-choose-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-choose-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.why-choose-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.why-choose h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f1b2d;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .why-choose h2 { font-size: 3rem; }
}

.why-choose-desc {
  color: var(--gray-700);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.why-choose-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose .outline-btn { margin-top: 1.25rem; }

.why-choose-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-choose-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-choose-card { grid-template-columns: 1fr 2fr; }
}

.why-choose-card-img {
  border-radius: 12px;
  overflow: hidden;
  height: 10rem;
}

@media (min-width: 768px) {
  .why-choose-card-img { height: 100%; }
}

.why-choose-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .why-choose-card-body h3 { font-size: 1.875rem; }
}

.why-choose-card-body p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- GET IN TOUCH ---------- */
.get-in-touch {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.git-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(88, 28, 135, 0.7), rgba(0, 0, 0, 0.8));
}

.git-glow-1,
.git-glow-2 {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
}

.git-glow-1 {
  top: 25%;
  left: 25%;
  background: rgba(59, 130, 246, 0.3);
  animation: git-pulse-1 8s ease-in-out infinite;
}

.git-glow-2 {
  bottom: 25%;
  right: 25%;
  background: rgba(168, 85, 247, 0.3);
  animation: git-pulse-2 10s ease-in-out infinite;
}

@keyframes git-pulse-1 {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes git-pulse-2 {
  0%, 100% { transform: scale(1.2); opacity: 0.2; }
  50% { transform: scale(1); opacity: 0.4; }
}

.git-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.git-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .git-content h1 { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .git-content h1 { font-size: 6rem; }
}

.git-content h1 .grad {
  background: linear-gradient(to right, #fff, #bfdbfe, #e9d5ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-move 5s linear infinite;
}

@keyframes grad-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.git-content h1 .shadowed {
  text-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.git-content > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 768px) {
  .git-content > p { font-size: 1.5rem; }
}

.git-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.git-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5);
}

.git-cta .git-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blue-600), #9333ea, var(--blue-600));
  background-size: 200% auto;
  animation: grad-move 3s linear infinite;
}

.git-cta .git-cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: git-shimmer 3s linear infinite;
}

@keyframes git-shimmer {
  0% { transform: translateX(-100%); }
  66%, 100% { transform: translateX(100%); }
}

.git-cta > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.git-cta .arrow {
  display: inline-block;
  animation: nudge-x 1.5s ease-in-out infinite;
}

.git-particle {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(2px);
  animation: git-particle 4s ease-in-out infinite;
}

@keyframes git-particle {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  50% { transform: translate(30px, -80px); opacity: 1; }
}
