/* ===================================
   CORPORATE OFFICE - PREMIUM LUXURY DESIGN
   ===================================
   
   Ultra-premium, rich, and unique professional design
   Glass-morphism, gradient orbs, parallax effects
   Animated elements with luxury aesthetics
   
   TABLE OF CONTENTS:
   1. Premium Hero Section
   2. Premium Location Showcase
   3. Glass-Effect Address Card
   4. Premium Visual Section
   5. Animations & Effects
   6. Responsive Design
   
   =================================== */

/* ===================================
   1. PREMIUM HERO SECTION
   =================================== */

.premium-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a75 50%, #2c5aa0 100%);
  position: relative;
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax-layer {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(84, 168, 212, 0.15) 0%,
    transparent 70%
  );
  filter: blur(60px);
  animation: parallax-float 25s ease-in-out infinite;
}

.layer-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.layer-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: 10%;
  animation-delay: 8s;
}

.layer-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: -100px;
  animation-delay: 16s;
}

@keyframes parallax-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.95);
  }
}

.hero-premium-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 3rem;
  animation: fade-slide-down 1s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #54a8d4;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(84, 168, 212, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(84, 168, 212, 0);
  }
}

.badge-text {
  font-size: 0.9375rem;
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.95);
}

.premium-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: reveal-line 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes reveal-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #54a8d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

@keyframes fade-slide-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ===================================
   2. PREMIUM LOCATION SHOWCASE
   =================================== */

.premium-location {
  padding: 8rem 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.location-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 58, 117, 0.08) 0%,
    transparent 70%
  );
  filter: blur(80px);
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
}

/* ===================================
   3. GLASS-EFFECT ADDRESS CARD
   =================================== */

.premium-address-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.card-glass-effect {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%
  );
  transform: rotate(45deg);
  pointer-events: none;
}

.card-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

/* ===================================
   4. ADDRESS DETAILS PREMIUM
   =================================== */

.address-details-premium {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.details-header {
  position: relative;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 58, 117, 0.1);
}

.header-accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #1a3a75 0%, #54a8d4 100%);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.details-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.details-subtitle {
  font-size: 1.125rem;
  color: #1a3a75;
  font-weight: var(--font-medium);
  font-style: italic;
}

.address-paragraph {
  font-size: 1.25rem;
  font-weight: var(--font-medium);
  color: #0a1628;
  line-height: 1.8;
  margin-top: 2rem;
}

/* ===================================
   5. OFFICE IMAGE SECTION
   =================================== */

.office-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 58, 117, 0.3);
}

.office-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===================================
   6. RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1024px) {
  .card-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .premium-address-card {
    padding: 3rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .premium-hero {
    min-height: 70vh;
  }

  .premium-title {
    font-size: 2.5rem;
  }

  .premium-location {
    padding: 5rem 0;
  }

  .premium-address-card {
    padding: 2rem 1.5rem;
  }

  .details-title {
    font-size: 1.75rem;
  }

  .address-paragraph {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 480px) {
  .premium-title {
    font-size: 2rem;
  }

  .badge-text {
    font-size: 0.8125rem;
  }

  .premium-address-card {
    padding: 1.5rem 1.25rem;
  }

  .details-title {
    font-size: 1.5rem;
  }

  .address-paragraph {
    font-size: 1rem;
  }

  .card-content-grid {
    gap: 3rem;
  }
}

/* ===================================
   PARALLAX CARD EFFECT
   =================================== */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --x: 0;
  --y: 0;
}

.parallax-card {
  width: 600px;
  aspect-ratio: 2 / 1;
  max-height: calc(100svh - 2rem);
  position: relative;
  overflow: hidden;
  max-width: calc(100% - 2rem);
  margin: 4rem auto 4rem;
}

@media (orientation: portrait) {
  .parallax-card {
    min-height: 330px;
  }
}

.assets > img {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  height: 100%;
  width: 660px;
  object-fit: cover;
  object-position: center 43%;
  user-select: none;
  pointer-events: none;
}

.assets > img:first-of-type {
  filter: saturate(1.5) brightness(0.9);
  object-position: calc(-50% + (var(--x) * 30px)) calc(43% + (var(--y) * -20px));
}

.assets > img:last-of-type {
  width: 400px;
  left: 60%;
  object-position: calc(-50% + (var(--x) * 40px)) calc(43% + (var(--y) * -40px));
}

.assets h3 {
  position: absolute;
  left: 50%;
  top: 20%;
  margin: 0;
  font-size: 4rem;
  translate: -50% 0;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  color: white;
  translate: calc(-50% + (var(--x) * -30px)) calc(var(--y) * -20px);
}

/* Blurring */
.blur {
  --layers: 5;
  position: absolute;
  inset: 0;
}

.blur .layer {
  --blur: calc(
    sin(((var(--layers) - var(--index)) / var(--layers)) * 90deg) * 15
  );
  --stop: calc(sin(((var(--index)) / var(--layers)) * 90deg) * 15);
  position: absolute;
  inset: 0;
  background: hsl(0 0% 60% / 0.05);
  backdrop-filter: blur(calc(var(--blur) * 1px));
  mask: radial-gradient(
    150% 100% at 45% 90%,
    #fff 15%,
    #0000 calc((15 + var(--stop)) * 1%)
  );
}

.assets {
  position: absolute;
  inset: 0;
  border-radius: 4em;
  overflow: hidden;
}

/* ===================================
   END OF CORPORATE OFFICE - PREMIUM DESIGN
   =================================== */
