/* ========================================
   AXIS DATATECH - MODERN CSS FRAMEWORK
   ======================================== */

/* === ROOT VARIABLES === */
:root {
  /* Colors */
  --primary-color: #4da6ff;
  --secondary-color: #00d9ff;
  --accent-color: #7c3aed;
  --dark-bg: #0a0e27;
  --darker-bg: #060917;
  --card-bg: #12172e;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-muted: #6b7280;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4da6ff 0%, #0066cc 100%);
  --gradient-secondary: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
  --gradient-accent: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  --gradient-text: linear-gradient(135deg, #4da6ff, #00d9ff);
  
  /* Spacing */
  --section-padding: 120px;
  --container-padding: 15px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(77, 166, 255, 0.3);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

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

/* === PARTICLES BACKGROUND === */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(ellipse at bottom, #0a0e27 0%, #060917 100%);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gradient-text-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* === BUTTONS === */
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(77, 166, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(77, 166, 255, 0.6);
}

.btn-primary-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-gradient:hover::before {
  left: 100%;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-secondary-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 166, 255, 0.4);
}

.btn-gradient {
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all var(--transition-normal);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* === HEADER/NAVIGATION === */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-normal);
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(77, 166, 255, 0.1);
}

.header-area.scrolled {
  padding: 10px 0;
  background: rgba(10, 14, 39, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(77, 166, 255, 0.4));
  transition: transform var(--transition-normal);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  display: none;
}

.logo-accent {
  display: none;
}

.navbar-nav {
  gap: 8px;
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  transition: all var(--transition-fast);
  position: relative;
  border-radius: 8px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(77, 166, 255, 0.05);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #060917 0%, #0a0e27 50%, #0f1430 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(77, 166, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 217, 255, 0.06) 0%, transparent 50%);
  animation: bgMove 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes bgMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(77, 166, 255, 0.12);
  border: 1px solid rgba(77, 166, 255, 0.25);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(77, 166, 255, 0.15);
  animation: fadeInUp 0.8s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-pill i {
  font-size: 14px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 95%;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  max-width: 600px;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 24px 20px;
  background: rgba(77, 166, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(77, 166, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(77, 166, 255, 0.12);
  border-color: rgba(77, 166, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(77, 166, 255, 0.2);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: block;
  line-height: 1.2;
  min-height: 38px;
  font-family: 'Space Grotesk', sans-serif;
}

/* Ensure special text like 24/7 displays properly */
.stat-number[data-no-animate="true"] {
  letter-spacing: 0.5px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 40px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

.hero-logo-large {
  width: 75%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(77, 166, 255, 0.5)) 
          drop-shadow(0 0 25px rgba(0, 217, 255, 0.3));
  object-fit: contain;
  animation: logoFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes logoFloat {
  0%, 100% { 
    transform: translateY(0) scale(1);
  }
  50% { 
    transform: translateY(-15px) scale(1.02);
  }
}

/* === SECTION STYLES === */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(77, 166, 255, 0.1);
  border: 1px solid rgba(77, 166, 255, 0.3);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* === SERVICE CARDS === */
.service-card {
  position: relative;
  padding: 40px 30px;
  background: var(--card-bg);
  border: 1px solid rgba(77, 166, 255, 0.1);
  border-radius: 20px;
  transition: all var(--transition-normal);
  overflow: hidden;
  display: block;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(77, 166, 255, 0.3);
  box-shadow: 0 20px 40px rgba(77, 166, 255, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 15px;
  font-size: 32px;
  color: white;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.service-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

.service-bg-icon {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 150px;
  color: rgba(77, 166, 255, 0.05);
  pointer-events: none;
}

/* === ABOUT SECTION === */
.about-section {
  background: linear-gradient(135deg, rgba(12, 17, 35, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-float-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(18, 23, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(77, 166, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.float-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 10px;
  font-size: 24px;
  color: white;
}

.float-card-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.float-card-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 20px;
}

/* === SOLUTIONS SECTION === */
.solution-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(77, 166, 255, 0.1);
}

.solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(77, 166, 255, 0.3);
  box-shadow: 0 20px 40px rgba(77, 166, 255, 0.2);
}

.solution-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.solution-card:hover .solution-image img {
  transform: scale(1.1);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.solution-card:hover .solution-overlay {
  opacity: 1;
}

.solution-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  transition: transform var(--transition-normal);
}

.solution-link:hover {
  transform: scale(1.1) rotate(45deg);
}

.solution-content {
  padding: 30px;
}

.solution-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.solution-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.solution-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 14px;
  background: rgba(77, 166, 255, 0.1);
  border: 1px solid rgba(77, 166, 255, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(135deg, rgba(12, 17, 35, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
  padding: 120px 0;
}

.contact-info {
  padding-right: 40px;
}

.contact-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.contact-text p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 166, 255, 0.1);
  border: 1px solid rgba(77, 166, 255, 0.3);
  border-radius: 12px;
  color: var(--primary-color);
  font-size: 18px;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(77, 166, 255, 0.4);
}

.contact-form-wrapper {
  background: rgba(18, 23, 46, 0.8);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(77, 166, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.contact-form .row > div {
  padding-left: 10px;
  padding-right: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(77, 166, 255, 0.08);
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: 12px;
  color: #ffffff !important;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-normal);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  background: rgba(77, 166, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234da6ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--dark-bg);
  color: #ffffff;
  padding: 10px;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  max-height: 300px;
  line-height: 1.6;
}

.btn-primary-gradient.w-100 {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* Old form styles for compatibility */
form#contact {
  margin-left: 0;
  position: relative;
  background: rgba(18, 23, 46, 0.8);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(77, 166, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

form#contact input,
form#contact select,
form#contact textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(77, 166, 255, 0.08);
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-normal);
  outline: none;
  margin-bottom: 20px;
}

form#contact input:focus,
form#contact select:focus,
form#contact textarea:focus {
  border-color: var(--primary-color);
  background: rgba(77, 166, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.1);
}

form#contact input::placeholder,
form#contact textarea::placeholder {
  color: var(--text-muted);
}

form#contact textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

form#contact button,
form#contact .main-button {
  width: 100%;
  padding: 16px 32px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(77, 166, 255, 0.4);
  text-align: center;
  display: inline-block;
}

form#contact button:hover,
form#contact .main-button:hover {
  background: linear-gradient(135deg, #0066cc 0%, #4da6ff 100%);
  box-shadow: 0 6px 25px rgba(77, 166, 255, 0.6);
  transform: translateY(-2px);
}

form#contact .contact-dec {
  display: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* Phone info styling */
.phone-info {
  margin-top: 40px;
}

.phone-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.6;
}

.phone-info h4 span {
  display: block;
  margin-top: 10px;
}

.phone-info h4 span i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 10px;
  color: white;
  font-size: 18px;
  margin-right: 12px;
  vertical-align: middle;
}

.phone-info h4 span a {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.phone-info h4 span a:hover {
  color: var(--secondary-color);
}

/* Section heading in contact */
.contact-us .section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-us .section-heading p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  :root {
    --section-padding: 80px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;
  }

  .section-title {
    font-size: 36px;
  }

  .hero-section {
    padding: 140px 0 80px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .hero-image-wrapper {
    min-height: 400px;
    padding: 30px;
    margin-top: 0;
  }

  .hero-logo-large {
    width: 70%;
    max-width: 350px;
  }

  .hero-image-wrapper::before {
    width: 350px;
    height: 350px;
  }

  .navbar-collapse {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    margin-top: 15px;
    border-radius: 15px;
    border: 1px solid rgba(77, 166, 255, 0.1);
  }

  .navbar-nav {
    gap: 4px;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-form-wrapper,
  form#contact {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 16px 8px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-image-wrapper {
    min-height: 320px;
    padding: 20px;
  }

  .hero-logo-large {
    width: 80%;
    max-width: 280px;
  }

  .hero-image-wrapper::before {
    width: 280px;
    height: 280px;
  }

  .floating-element {
    display: none;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-img {
    height: 40px;
  }
  
  .footer-logo {
    width: 50px;
    height: 50px;
  }
  
  .scroll-indicator {
    bottom: 30px;
  }

  .contact-form-wrapper,
  form#contact {
    padding: 30px 20px;
  }

  .form-control,
  form#contact input,
  form#contact select,
  form#contact textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .btn-primary-gradient.w-100,
  form#contact button,
  form#contact .main-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .contact-us .section-heading h2 {
    font-size: 28px;
  }

  .phone-info h4 {
    font-size: 14px;
  }

  .phone-info h4 span i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* === FOOTER === */
.footer-section {
  background: var(--darker-bg);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(77, 166, 255, 0.1);
  position: relative;
  margin-top: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 15px;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.footer-newsletter p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(77, 166, 255, 0.08);
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all var(--transition-normal);
}

.newsletter-form input:focus {
  border-color: var(--primary-color);
  background: rgba(77, 166, 255, 0.12);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(77, 166, 255, 0.4);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(77, 166, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(77, 166, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(77, 166, 255, 0.6);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  animation: bounce 2s infinite;
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  background: rgba(77, 166, 255, 0.05);
}

.mouse .wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { 
    opacity: 1; 
    transform: translateY(0);
  }
  100% { 
    opacity: 0; 
    transform: translateY(14px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateX(-50%) translateY(0); 
  }
  40% { 
    transform: translateX(-50%) translateY(-10px); 
  }
  60% { 
    transform: translateX(-50%) translateY(-5px); 
  }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  /* ...existing code... */

  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 40px;
  }

  .scroll-indicator {
    bottom: 30px;
  }
}

@media (max-width: 767px) {
  /* ...existing code... */

  .scroll-indicator {
    bottom: 20px;
    font-size: 10px;
  }

  .mouse {
    width: 22px;
    height: 36px;
  }

  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .footer-brand h3 {
    font-size: 22px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
