/* ============================================
   CONTACT PAGE - PREMIUM STYLES
   ============================================ */

/* ============================================
   CONTACT HERO - MATCHES ABOUT & SERVICES
   ============================================ */
.contact-hero {
  position: relative;
  min-height: 420px;
  max-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
  padding: 0;
}

/* BACKGROUND LIGHT (DEPTH) */
.contact-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 70% 50%, 
    rgba(59, 130, 246, 0.2), 
    transparent 60%
  );
  pointer-events: none;
}

/* NETWORK GLOW EFFECT - Subtle dots */
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 40%, rgba(96, 165, 250, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 85% 55%, rgba(96, 165, 250, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 70% 65%, rgba(255, 170, 50, 0.5) 2px, transparent 2px);
  background-repeat: no-repeat;
  z-index: 1;
  animation: pulseSubtle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseSubtle {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* HERO IMAGE - Full immersive */
.contact-hero .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.contact-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) contrast(1.1);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* FADE OVERLAY - Blends image into dark background */
.contact-hero .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #030712 0%,
    rgba(3, 7, 18, 0.9) 25%,
    rgba(3, 7, 18, 0.5) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* CONTENT ABOVE EVERYTHING */
.contact-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-hero .hero-content {
  max-width: 520px;
}

.contact-hero .breadcrumb-trail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hero .breadcrumb-trail a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.contact-hero .breadcrumb-trail a:hover {
  color: var(--white);
}

.contact-hero .breadcrumb-trail .current {
  color: var(--white);
}

.contact-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 8px;
}

.contact-hero h2 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 460px;
}

/* ============================================
   CONTACT SECTION - INFO & FORM
   ============================================ */
.contact-section {
  padding: 60px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ===== LEFT COLUMN - CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s;
}

.contact-info-item:hover {
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-info-item span {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
.form-group {
  position: relative;
}

.required {
  color: #ef4444;
  font-weight: 700;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

.error-message {
  display: none;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}

.error-message.visible {
  display: block;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #22c55e;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* Loading state */
.btn-submit.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: '...';
  animation: dots 1.5s steps(4) infinite;
}

@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* ===== RIGHT COLUMN - CONTACT FORM ===== */
.contact-form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
}

.contact-form-wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  color: var(--gray);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.btn-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  margin-top: 4px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.45);
}

/* ============================================
   MAP SECTION - WITH GOOGLE MAPS IFRAME
   ============================================ */
.map-section {
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-container > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: #030712;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-map {
  width: 100%;
  height: 350px;
  display: block;
  border: none;
}

.map-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.btn-map {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-map:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-hero {
    max-height: none;
    min-height: 380px;
  }

  .contact-hero .hero-image {
    width: 65%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 340px;
    padding: 60px 0 50px;
  }

  .contact-hero .hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .contact-hero .hero-image img {
    opacity: 1;
    filter: brightness(0.5) contrast(1.2);
  }

  .contact-hero .hero-image::after {
    background: linear-gradient(
      180deg,
      #030712 0%,
      rgba(3, 7, 18, 0.9) 30%,
      rgba(3, 7, 18, 0.6) 60%,
      #030712 100%
    );
  }

  .contact-hero .hero-inner {
    padding: 0 20px;
  }

  .contact-hero .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero h2 {
    font-size: 17px;
  }

  .contact-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .contact-hero .breadcrumb-trail {
    justify-content: center;
  }

  .contact-section {
    padding: 40px 20px 60px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .contact-form-wrapper h3 {
    font-size: 20px;
  }

  .contact-info-item {
    padding: 14px 16px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }

  .map-section {
    padding: 0 20px 60px;
  }

  .contact-map {
    height: 280px;
  }

  .btn-map {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 300px;
    padding: 50px 0 40px;
  }

  .contact-hero h1 {
    font-size: 26px;
  }

  .contact-section {
    padding: 32px 16px 48px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .contact-info-item span {
    display: block;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }

  .map-section {
    padding: 0 16px 48px;
  }

  .contact-map {
    height: 220px;
  }

  .map-actions {
    justify-content: center;
  }

  .btn-map {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============================================
   FUTURISTIC GLOBE OVERLAY - CONTACT PAGE
   ============================================ */

/* Globe Container - Positioned on RIGHT side */
.globe-overlay {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 5;
  width: 320px;
  height: 320px;
  pointer-events: none;
}

/* Outer Orbital Rings */
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringSpin 20s linear infinite;
}

.globe-ring-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(59, 130, 246, 0.12);
  animation-duration: 30s;
}

.globe-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(59, 130, 246, 0.08);
  animation-duration: 25s;
  animation-direction: reverse;
}

.globe-ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(96, 165, 250, 0.06);
  animation-duration: 20s;
  border-style: dashed;
}

@keyframes ringSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cyber Globe Core - VIBRANT BLUE */
.cyber-globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.5) 30%, rgba(2, 6, 23, 0.95) 80%);
  box-shadow: 
    inset 0 0 60px rgba(59, 130, 246, 0.5),
    0 0 50px rgba(59, 130, 246, 0.4),
    0 0 100px rgba(37, 99, 235, 0.25),
    0 0 150px rgba(59, 130, 246, 0.15);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  animation: globeFloat 8s ease-in-out infinite alternate;
}

@keyframes globeFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Globe Mesh - More visible */
.globe-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 50%;
  animation: meshScroll 10s linear infinite;
}

@keyframes meshScroll {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Globe Pulse Ring - More visible */
.globe-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* Floating Nodes - Vibrant */
.globe-node {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(3, 10, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 11px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  cursor: pointer;
}

.globe-node i {
  position: relative;
  z-index: 2;
}

.globe-node:hover {
  color: #ffffff;
  border-color: #60a5fa;
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 30px #3b82f6, 0 0 60px rgba(59, 130, 246, 0.3);
}

/* Node Pulse Ring - Vibrant */
.node-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  animation: nodePulse 2.5s ease-out infinite;
}

.globe-node:nth-child(1) .node-pulse-ring { animation-delay: 0s; }
.globe-node:nth-child(2) .node-pulse-ring { animation-delay: 0.4s; }
.globe-node:nth-child(3) .node-pulse-ring { animation-delay: 0.8s; }
.globe-node:nth-child(4) .node-pulse-ring { animation-delay: 1.2s; }
.globe-node:nth-child(5) .node-pulse-ring { animation-delay: 1.6s; }
.globe-node:nth-child(6) .node-pulse-ring { animation-delay: 2.0s; }

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Node Positions */
.node-pos-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.node-pos-2 { top: 55px; right: 12px; }
.node-pos-3 { bottom: 85px; right: -2px; }
.node-pos-4 { bottom: 18px; left: 72%; }
.node-pos-5 { bottom: 40px; left: 28px; }
.node-pos-6 { top: 88px; left: 5px; }

/* Connection Lines SVG */
.globe-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.conn-line {
  stroke: rgba(59, 130, 246, 0.2);
  stroke-width: 1;
  animation: linePulse 3s ease-in-out infinite;
}

.conn-line:nth-child(1) { animation-delay: 0s; }
.conn-line:nth-child(2) { animation-delay: 0.4s; }
.conn-line:nth-child(3) { animation-delay: 0.8s; }
.conn-line:nth-child(4) { animation-delay: 1.2s; }
.conn-line:nth-child(5) { animation-delay: 1.6s; }
.conn-line:nth-child(6) { animation-delay: 2.0s; }
.conn-line:nth-child(7) { animation-delay: 2.4s; }
.conn-line:nth-child(8) { animation-delay: 2.8s; }

@keyframes linePulse {
  0%, 100% { stroke: rgba(59, 130, 246, 0.1); }
  50% { stroke: rgba(59, 130, 246, 0.4); }
}

.center-dot {
  fill: #60a5fa;
  opacity: 0.8;
  animation: centerDotPulse 2s ease-in-out infinite;
}

@keyframes centerDotPulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* Responsive - Adjust globe position on smaller screens */
@media (max-width: 1024px) {
  .globe-overlay {
    width: 260px;
    height: 260px;
    right: 3%;
  }
  .globe-ring-1 { width: 240px; height: 240px; }
  .globe-ring-2 { width: 200px; height: 200px; }
  .globe-ring-3 { width: 160px; height: 160px; }
  .cyber-globe-core { width: 120px; height: 120px; }
  .globe-node { width: 24px; height: 24px; font-size: 10px; }
  .node-pos-2 { top: 45px; right: 8px; }
  .node-pos-3 { bottom: 65px; right: -1px; }
  .node-pos-6 { top: 70px; left: 3px; }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 20px 0 30px 0;
    min-height: auto;
    max-height: none;
  }
  
  .globe-overlay {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 200px;
    height: 200px;
    margin: 10px auto 0;
  }
  
  .contact-hero .hero-content {
    text-align: center;
  }
  
  .globe-ring-1 { width: 180px; height: 180px; }
  .globe-ring-2 { width: 150px; height: 150px; }
  .globe-ring-3 { width: 120px; height: 120px; }
  .cyber-globe-core { width: 90px; height: 90px; }
  .globe-node { width: 20px; height: 20px; font-size: 8px; }
  .node-pos-1 { top: 5px; }
  .node-pos-2 { top: 35px; right: 5px; }
  .node-pos-3 { bottom: 50px; right: -1px; }
  .node-pos-4 { bottom: 12px; left: 72%; }
  .node-pos-5 { bottom: 28px; left: 18px; }
  .node-pos-6 { top: 55px; left: 2px; }
}

/* ============================================
   EXTRA LARGE SCREENS - CONTACT PAGE
   ============================================ */

/* For screens 1800px and larger (100+ inch monitors) */
@media (min-width: 1800px) {
  .contact-hero {
    min-height: 500px;
    max-height: 650px;
  }

  .contact-hero .hero-inner {
    max-width: 1400px;
    padding: 0 60px;
  }

  .contact-hero .hero-content {
    max-width: 650px;
  }

  .contact-hero h1 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .contact-hero h2 {
    font-size: clamp(22px, 1.8vw, 28px);
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-hero .hero-image {
    width: 58%;
  }

  /* Globe larger on large screens */
  .globe-overlay {
    width: 400px;
    height: 400px;
  }

  .globe-ring-1 { width: 380px; height: 380px; }
  .globe-ring-2 { width: 330px; height: 330px; }
  .globe-ring-3 { width: 280px; height: 280px; }

  .cyber-globe-core {
    width: 180px;
    height: 180px;
  }

  .globe-node {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .node-pos-2 { top: 65px; right: 15px; }
  .node-pos-3 { bottom: 100px; right: -2px; }
  .node-pos-6 { top: 105px; left: 6px; }

  /* Contact Section */
  .contact-section {
    padding: 80px 60px 100px;
  }

  .contact-container {
    max-width: 1400px;
    gap: 80px;
  }

  .contact-info-item {
    padding: 20px 24px;
    border-radius: 14px;
  }

  .contact-info-icon {
    width: 52px;
    height: 52px;
  }

  .contact-info-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-info-item h4 {
    font-size: 16px;
  }

  .contact-info-item p {
    font-size: 17px;
  }

  .contact-info-item span {
    font-size: 14px;
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: 48px 44px;
    border-radius: 16px;
  }

  .contact-form-wrapper h3 {
    font-size: 26px;
  }

  .contact-form-wrapper p {
    font-size: 16px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .btn-submit {
    padding: 16px 40px;
    font-size: 17px;
  }

  /* Map Section */
  .map-section {
    padding: 0 60px 100px;
  }

  .map-container {
    max-width: 1400px;
  }

  .contact-map {
    height: 420px;
  }

  .btn-map {
    padding: 14px 36px;
    font-size: 15px;
  }
}

/* For screens 2200px and larger */
@media (min-width: 2200px) {
  .contact-hero .hero-inner {
    max-width: 1600px;
    padding: 0 80px;
  }

  .contact-hero h1 {
    font-size: clamp(48px, 4vw, 64px);
  }

  .globe-overlay {
    width: 480px;
    height: 480px;
  }

  .globe-ring-1 { width: 450px; height: 450px; }
  .globe-ring-2 { width: 390px; height: 390px; }
  .globe-ring-3 { width: 330px; height: 330px; }

  .cyber-globe-core {
    width: 210px;
    height: 210px;
  }

  .globe-node {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-container {
    max-width: 1600px;
    gap: 100px;
  }

  .contact-info-item {
    padding: 24px 28px;
  }

  .contact-info-icon {
    width: 60px;
    height: 60px;
  }

  .contact-info-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-form-wrapper {
    padding: 56px 52px;
  }

  .contact-form-wrapper h3 {
    font-size: 30px;
  }

  .btn-submit {
    padding: 18px 48px;
    font-size: 18px;
  }

  .contact-map {
    height: 480px;
  }

  .btn-map {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* For screens 3000px and larger */
@media (min-width: 3000px) {
  .contact-hero .hero-inner {
    max-width: 1800px;
    padding: 0 100px;
  }

  .contact-hero h1 {
    font-size: 72px;
  }

  .contact-hero .hero-content {
    max-width: 800px;
  }

  .globe-overlay {
    width: 550px;
    height: 550px;
  }

  .globe-ring-1 { width: 520px; height: 520px; }
  .globe-ring-2 { width: 460px; height: 460px; }
  .globe-ring-3 { width: 400px; height: 400px; }

  .cyber-globe-core {
    width: 250px;
    height: 250px;
  }

  .globe-node {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .contact-container {
    max-width: 1800px;
    gap: 120px;
  }

  .contact-info-item {
    padding: 28px 32px;
  }

  .contact-info-icon {
    width: 68px;
    height: 68px;
  }

  .contact-info-icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-info-item h4 {
    font-size: 18px;
  }

  .contact-info-item p {
    font-size: 19px;
  }

  .contact-info-item span {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 64px 60px;
  }

  .contact-form-wrapper h3 {
    font-size: 34px;
  }

  .contact-form-wrapper p {
    font-size: 18px;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 16px 22px;
    font-size: 17px;
  }

  .btn-submit {
    padding: 20px 56px;
    font-size: 20px;
  }

  .map-section {
    padding: 0 80px 120px;
  }

  .contact-map {
    height: 550px;
  }

  .btn-map {
    padding: 18px 48px;
    font-size: 18px;
  }
}