:root {
  /* Warm Minimalism + Navy/Aqua Palette */
  --bg-color: #F6F7F9;
  --surface-color: rgba(255, 255, 255, 0.65);
  --surface-border: rgba(255, 255, 255, 0.8);
  --text-main: #0B1C30; /* Navy Blue */
  --text-secondary: #4A5B70; /* Muted Navy */
  --accent-aqua: #00B4D8; /* Aqua Blue */
  --accent-navy: #0F2D52;
  --glow-aqua: rgba(0, 180, 216, 0.15);
  --glow-navy: rgba(15, 45, 82, 0.1);
  
  /* 3D Shadows & Layering */
  --shadow-sm: 0 4px 12px rgba(11, 28, 48, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  --shadow-md: 0 12px 32px rgba(11, 28, 48, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  --shadow-lg: 0 24px 48px rgba(11, 28, 48, 0.12), inset 0 2px 3px rgba(255, 255, 255, 1);
  --shadow-float: 0 32px 64px rgba(0, 180, 216, 0.15), inset 0 2px 3px rgba(255, 255, 255, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-color);
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

/* Ambient 3D Background Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: float-glow 20s infinite alternate ease-in-out;
}

.glow-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--glow-aqua);
}

.glow-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: var(--glow-navy);
  animation-delay: -10s;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 10%) scale(1.1); }
}

h1, h2, h3, .brand {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--accent-navy);
}

/* Glassmorphism Panel Base */
.glass-panel {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
  border-radius: 24px;
}

.shell {
  width: min(100%, 75rem);
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  position: sticky;
  top: 1rem;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-navy);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-aqua);
  border: 1px solid rgba(0, 180, 216, 0.2);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 1);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-aqua);
  box-shadow: 0 0 10px var(--accent-aqua);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

/* Hero Section */
.hero {
  padding: 4rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 54rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  perspective: 1000px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-navy), var(--accent-aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtext {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 42ch;
  line-height: 1.6;
  margin: 0 0 3rem;
}

/* 3D Floating Announcement Box */
.hero-announcement {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: left;
  animation: float 6s infinite ease-in-out;
  transform-style: preserve-3d;
}

.3d-float {
  box-shadow: var(--shadow-float);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-10px) rotateX(2deg) rotateY(-2deg); }
}

.announcement-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}

.announcement-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  font-family: "Outfit", sans-serif;
}

.announcement-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Uniform Content Blocks */
.content-blocks {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.block-full {
  padding: 4rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.block-split {
  padding: 0;
  display: flex;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.split-text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  flex: 1;
  min-height: 300px;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
}

.concept-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-map {
  flex: 1;
  min-height: 450px;
  background: #E8EAED;
  display: block; /* Use block to prevent flex collapse on mobile */
  position: relative;
}

.styled-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.3d-hover:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

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

.narrow-container {
  max-width: 48rem;
  margin: 0 auto;
}

.block-full p, .split-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* Symmetrical Grid for Services */
.even-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.4);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem !important;
}

/* Contact Specifics */
.global-support {
  font-weight: 500;
  color: var(--accent-aqua) !important;
  margin-bottom: 1.5rem !important;
  font-size: 1.1rem !important;
}

.contact-address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-address strong {
  color: var(--text-main);
  font-size: 1.15rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
}

.contact-phone {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 28, 48, 0.08);
}

.contact-phone a {
  color: var(--accent-navy);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone a:hover {
  color: var(--accent-aqua);
}



/* Footer */
.site-footer {
  margin-top: 2rem;
}

.footer-panel {
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.forward-message {
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  color: var(--accent-navy);
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.made-with-love {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0;
  font-weight: 500;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.heart {
  color: #FF3B30;
  display: inline-block;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.2); }
  20% { transform: scale(1); }
  30% { transform: scale(1.2); }
  40% { transform: scale(1); }
}

@media (max-width: 900px) {
  .even-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .block-split {
    flex-direction: column;
  }
  
  .split-image, .split-map {
    width: 100%;
    height: 400px;
    min-height: 400px;
  }
  .styled-map {
    height: 400px;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-announcement {
    flex-direction: column;
    text-align: center;
  }
  
  .shell {
    padding: 1.5rem 1rem 4rem;
  }

  .block-full, .split-text {
    padding: 2.5rem 1.5rem;
  }
}
