/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  /* Colors */
  --bg-base: hsl(222, 24%, 6%);
  --bg-surface: hsl(222, 20%, 10%);
  --bg-surface-glass: hsla(222, 20%, 10%, 0.65);
  --bg-card: hsl(222, 18%, 12%);
  --bg-card-glass: hsla(222, 18%, 12%, 0.5);
  
  --border-light: hsla(222, 15%, 20%, 0.5);
  --border-focus: hsla(38, 90%, 55%, 0.5);
  
  --text-primary: hsl(220, 15%, 93%);
  --text-secondary: hsl(220, 10%, 72%);
  --text-muted: hsl(220, 8%, 52%);
  
  --primary: hsl(38, 90%, 55%);
  --primary-hover: hsl(38, 95%, 48%);
  --primary-glow: hsla(38, 90%, 55%, 0.15);
  
  --secondary: hsl(198, 93%, 60%);
  --secondary-glow: hsla(198, 93%, 60%, 0.15);
  
  --success: hsl(142, 72%, 45%);
  --error: hsl(0, 84%, 60%);
  
  /* Fonts */
  --font-family-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-display: 'Outfit', var(--font-family-sans);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 16px -6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-family-sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Ambient glow blobs */
.ambient-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: var(--border-radius-full);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}
.glow-1 {
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -10vw;
  right: -5vw;
}
.glow-2 {
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  top: 50vw;
  left: -10vw;
}

/* ==========================================================================
   Typography & Common Elements
   ========================================================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  background: hsla(38, 90%, 55%, 0.1);
  border: 1px solid hsla(38, 90%, 55%, 0.2);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 650px;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary);
  color: hsl(222, 24%, 6%);
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(38, 90%, 55%, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: hsla(222, 15%, 20%, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background-color: hsla(222, 15%, 20%, 0.9);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: hsla(38, 90%, 55%, 0.05);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-normal), height var(--transition-normal);
}

.main-header.scrolled {
  height: 70px;
  background-color: hsla(222, 24%, 6%, 0.9);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-family-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none !important;
}
.logo-accent {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}
.nav-link:hover {
  color: var(--text-primary);
}
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: var(--border-radius-full);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-family-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-stats .divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-light);
}

.hero-image-wrapper {
  position: relative;
}
.hero-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hero-image-card:hover .hero-image {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: hsla(222, 24%, 6%, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}
.icon-verified {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card-glass);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px hsla(38, 90%, 55%, 0.05);
}

.service-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: hsla(38, 90%, 55%, 0.1);
  border: 1px solid hsla(38, 90%, 55%, 0.2);
  color: var(--primary);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}
.service-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: var(--border-radius-full);
  background-color: var(--primary);
}

/* ==========================================================================
   Network Showcase Section
   ========================================================================== */
.network-section {
  padding: 6rem 0;
  position: relative;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 5rem;
}

.network-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.network-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
}
.net-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.net-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.net-stat p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.country-pill {
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.country-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.country-pill.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: hsl(222, 24%, 6%);
  font-weight: 600;
}

.network-display-panel {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.card-display {
  display: none;
  animation: fadeIn var(--transition-normal) forwards;
}
.card-display.active {
  display: block;
}

.card-display h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.card-display p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hub-details {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hub-details span {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hub-details strong {
  color: var(--text-primary);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
}

.timeline-item {
  position: relative;
}

.timeline-number {
  font-family: var(--font-family-display);
  font-size: 3rem;
  font-weight: 800;
  color: hsla(38, 90%, 55%, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.timeline-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   Contact / RFQ Section
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: hsla(222, 15%, 20%, 0.5);
  border: 1px solid var(--border-light);
  color: var(--primary);
  border-radius: var(--border-radius-full);
}
.detail-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
}
a.detail-value:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.sourcing-form {
  display: block;
  transition: opacity var(--transition-normal);
}
.sourcing-form.hidden {
  display: none;
  opacity: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.form-group.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input, 
.form-group textarea, 
.form-group select {
  background-color: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Custom Select styling support */
.custom-select-wrapper {
  position: relative;
}
.custom-select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}
.custom-select-wrapper::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
  transition: border-top-color var(--transition-fast);
}
.custom-select-wrapper:hover::after {
  border-top-color: var(--text-primary);
}

/* Form submission and success indicators */
.arrow-icon {
  transition: transform var(--transition-fast);
}
.btn-full:hover .arrow-icon {
  transform: translateX(4px);
}

.success-message-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}
.success-message-panel.hidden {
  display: none;
}
.success-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: hsla(142, 72%, 45%, 0.1);
  border: 1px solid hsla(142, 72%, 45%, 0.2);
  color: var(--success);
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}
.success-message-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.success-message-panel p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 420px;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.main-footer {
  background-color: hsla(222, 24%, 3%, 0.95);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-brand {
  max-width: 360px;
}
.footer-logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-slogan {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 2rem 0;
}
.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-address {
  text-align: right;
  max-width: 450px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3rem !important; }
  .hero-container {
    gap: 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .logo {
    font-size: 1.35rem;
  }

  .header-actions .btn {
    display: none !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image-card {
    aspect-ratio: 16 / 9;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-base);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    gap: 2.5rem;
    transition: left var(--transition-normal);
    z-index: 99;
  }
  .nav-menu.open {
    left: 0;
  }
  
  .nav-menu .mobile-menu-btn {
    display: flex !important;
    margin-top: 1rem;
    width: 80%;
  }

  .mobile-nav-toggle {
    display: flex;
  }
  
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-address {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .network-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .countries-list {
    justify-content: center;
  }
  .network-display-panel {
    padding: 1.5rem;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
