/* ============================================= */
/* NEXT-GEN ADDRESS PAGE STYLES - ULTRA PREMIUM */
/* ============================================= */

/* Base Variables */
:root {
  --primary: #00d4ff;
  --secondary: #ff0080;
  --accent: #00ff88;
  --dark-bg: #0a0a1a;
  --darker-bg: #050510;
  --card-bg: rgba(15, 25, 45, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #b0b8d0;
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
  --gradient-secondary: linear-gradient(135deg, #ff0080 0%, #ff8000 100%);
  --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
  --shadow-intense: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 15px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-intense);
}

.floating-nav-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.floating-nav-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(-10px);
  box-shadow: var(--shadow-glow);
}

.floating-nav-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-nav-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.main-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.title-subtext {
  display: block;
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.title-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.title-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s linear infinite;
}

/* Address Footer Section */
.address-footer-section {
  padding: 100px 20px 0;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 40s linear infinite;
}

.bg-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.bg-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.orbit-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 212, 255, 0.1);
  border-radius: 50%;
}

.orbit-1 {
  width: 100vw;
  height: 100vw;
  animation: orbitRotate 60s linear infinite;
}

.orbit-2 {
  width: 80vw;
  height: 80vw;
  animation: orbitRotate 40s linear infinite reverse;
}

.orbit-3 {
  width: 60vw;
  height: 60vw;
  animation: orbitRotate 30s linear infinite;
}

/* Main Container */
.address-footer-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Top Row Layout */
.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Map Box */
.map-box {
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-intense);
  transition: all 0.4s ease;
}

.map-box:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.map-header h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.map-controls {
  display: flex;
  gap: 10px;
}

.map-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.map-wrapper {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.interactive-map {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(20%) hue-rotate(180deg) saturate(120%);
  transition: filter 0.5s ease;
}

.map-box:hover .interactive-map {
  filter: none;
}

.map-3d-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(0, 212, 255, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  color: var(--secondary);
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.5));
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 0, 128, 0.2);
  animation: markerPulse 2s ease-in-out infinite;
}

.map-actions {
  display: flex;
  gap: 15px;
  padding: 25px 30px;
  background: rgba(0, 0, 0, 0.3);
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 15px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navigate-btn {
  background: var(--gradient-primary);
  color: white;
}

.route-btn {
  background: var(--gradient-secondary);
  color: white;
}

.save-btn {
  background: var(--gradient-accent);
  color: white;
}

.btn-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-primary);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-btn:hover .btn-glow {
  opacity: 0.5;
}

.action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Address Box */
.address-box {
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-intense);
  transition: all 0.4s ease;
}

.address-box:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.1), transparent);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.address-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.address-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.neon-heading {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.neon-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.address-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.address-badge {
  background: rgba(0, 255, 136, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.address-details {
  padding: 30px;
}

.address-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.address-card-header h3 {
  font-size: 1.3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.address-card-body {
  padding: 25px;
}

.address-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.address-line:hover {
  background: rgba(0, 212, 255, 0.05);
  transform: translateX(10px);
}

.line-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.address-line p {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.location-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item i {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.meta-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Coordinates Compass */
.coordinates-container {
  padding: 30px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compass-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.compass-rose {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.3);
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}

.compass-point {
  position: absolute;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.compass-point.n { top: 10px; left: 50%; transform: translateX(-50%); }
.compass-point.e { right: 10px; top: 50%; transform: translateY(-50%); }
.compass-point.s { bottom: 10px; left: 50%; transform: translateX(-50%); }
.compass-point.w { left: 10px; top: 50%; transform: translateY(-50%); }

.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 45%;
  background: var(--secondary);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(45deg);
  animation: compassSpin 10s linear infinite;
}

.coordinates-display {
  flex: 1;
  margin-left: 40px;
}

.coordinate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.coord-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.coord-value {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

/* Middle Row */
.middle-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* QR Code Section */
.qr-section {
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 128, 0.2);
  box-shadow: var(--shadow-intense);
}

.qr-header {
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(255, 0, 128, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 0, 128, 0.2);
}

.qr-header h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.qr-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.qr-hologram-container {
  padding: 30px;
  display: flex;
  justify-content: center;
}

.qr-hologram {
  width: 250px;
  height: 250px;
  position: relative;
}

.qr-backplate {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 128, 0, 0.1));
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.qr-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  animation: gridMove 20s linear infinite;
}

.qr-image {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: contrast(150%) brightness(120%);
  z-index: 2;
}

.qr-scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  animation: qrScan 3s ease-in-out infinite;
  z-index: 3;
}

.qr-orbitals {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 0, 128, 0.3);
  border-radius: 50%;
}

.ring-1 { width: 280px; height: 280px; animation: orbitRotate 20s linear infinite; }
.ring-2 { width: 320px; height: 320px; animation: orbitRotate 25s linear infinite reverse; }
.ring-3 { width: 360px; height: 360px; animation: orbitRotate 30s linear infinite; }

.qr-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qr-floating-icons i {
  position: absolute;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

.qr-floating-icons i:nth-child(1) { top: 20px; left: 20px; animation-delay: 0s; }
.qr-floating-icons i:nth-child(2) { top: 20px; right: 20px; animation-delay: 2s; }
.qr-floating-icons i:nth-child(3) { bottom: 20px; left: 50%; animation-delay: 4s; }

.qr-actions {
  display: flex;
  gap: 10px;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.3);
}

.qr-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qr-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-intense);
}

.contact-header {
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-header h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.contact-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-grid {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.executive-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
}

.executive-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.executive-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.badge-rank {
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
}

.badge-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.executive-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.executive-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
}

.avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: var(--gradient-primary);
  filter: blur(15px);
  opacity: 0.5;
}

.executive-details h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.executive-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-method i {
  color: var(--primary);
  width: 20px;
}

.phone-number {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-number:hover {
  color: var(--primary);
  text-decoration: underline;
}

.executive-contact-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.executive-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Help Section */
.help-section {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.help-title {
  display: flex;
  align-items: center;
  gap: 25px;
}

.help-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

.icon-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  animation: pulse 2s ease-in-out infinite;
}

.help-title h3 {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-dot.online {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.channel-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.channel-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.channel-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.channel-info h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.channel-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.channel-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.call-now {
  background: var(--gradient-primary);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.email-btn {
  background: var(--gradient-secondary);
  color: white;
}

.video-btn {
  background: var(--gradient-accent);
  color: white;
}

.channel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.support-timing {
  display: flex;
  justify-content: space-around;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timing-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timing-item i {
  font-size: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timing-item div {
  display: flex;
  flex-direction: column;
}

.timing-item strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.timing-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(5, 5, 16, 0.9);
  border-radius: 25px 25px 0 0;
  padding-top: 80px;
  position: relative;
  margin-top: 80px;
}

.wave-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider path {
  fill: var(--dark-bg);
}

.copyright-content {
  padding: 40px;
  text-align: center;
}

.copyright-text p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.glow-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.copyright-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.social-links-section {
  margin: 40px 0;
}

.social-links-section h4 {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link i {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.social-link span {
  font-size: 0.9rem;
  font-weight: 600;
}

.social-tooltip {
  position: absolute;
  bottom: -30px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
  opacity: 1;
  bottom: -25px;
}

/* Social brand colors */
.instagram { background: linear-gradient(135deg, #E1306C, #833AB4); color: white; }
.facebook { background: linear-gradient(135deg, #1877F2, #0A5ED9); color: white; }
.linkedin { background: linear-gradient(135deg, #0077B5, #005582); color: white; }
.twitter { background: linear-gradient(135deg, #1DA1F2, #0D8BD9); color: white; }
.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); color: white; }
.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.back-to-top span {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back-to-top:hover span {
  opacity: 1;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

.nav-btn {
  padding: 15px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.home-btn {
  background: var(--gradient-primary);
  color: white;
}

.contact-btn {
  background: var(--gradient-secondary);
  color: white;
}

.branches-btn {
  background: var(--gradient-accent);
  color: white;
}

.nav-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Notifications */
.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 15px 25px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  animation: slideIn 0.3s ease;
  border-left: 4px solid var(--accent);
}

.notification.success { border-color: var(--accent); }
.notification.info { border-color: var(--primary); }
.notification.error { border-color: var(--secondary); }

.notification button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes markerPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes qrScan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes compassSpin {
  from { transform: translate(-50%, -100%) rotate(0deg); }
  to { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

/* Responsive Design */
@media (max-width: 1400px) {
  .top-row, .middle-row {
    grid-template-columns: 1fr;
  }
  
  .map-wrapper, .address-box {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .main-title {
    font-size: 2.5rem;
  }
  
  .floating-nav {
    display: none;
  }
  
  .support-channels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .address-footer-section {
    padding: 80px 15px 0;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .top-row, .middle-row {
    gap: 30px;
  }
  
  .map-header, .address-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .support-channels {
    grid-template-columns: 1fr;
  }
  
  .support-timing {
    flex-direction: column;
    gap: 20px;
  }
  
  .navigation-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .section-header {
    margin-bottom: 40px;
  }
  
  .title-decoration {
    gap: 15px;
  }
  
  .title-line {
    width: 50px;
  }
  
  .map-actions, .qr-actions {
    flex-direction: column;
  }
  
  .action-btn, .qr-btn {
    width: 100%;
  }
  
  .social-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

