/* ===== SCAT - Modern Website Redesign ===== */
/* Color Palette:
   Primary:     #15295c (navy)
   Primary Dark:#0a1838
   Accent:      #3b82f6 (vibrant blue)
   Accent Light:#60a5fa
   Gold:        #d4a843
   White:       #ffffff
   Light BG:    #f0f4f8
   Text:        #1e293b
   Muted:       #64748b
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 24, 56, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 8px 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: none;
  background: #fff;
  padding: 3px;
  animation: logoFlip 4s ease-in-out infinite;
  transform-style: preserve-3d;
  filter: none;
}

@keyframes logoFlip {
  0%   { transform: rotateY(0deg); }
  25%  { transform: rotateY(180deg); }
  50%  { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}

.nav-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: #fff;
  background: rgba(59, 130, 246, 0.2);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0a1838;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.15);
  padding-left: 26px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hide close button on desktop */
.nav-close {
  display: none;
}

/* ===== HERO SECTION (index.html) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0a1838 0%, #15295c 40%, #1e3a6e 70%, #0a1838 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 5%); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(transparent, #ffffff);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 35px;
  perspective: 800px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  background: #fff;
  padding: 6px;
  filter: none;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.25), 0 0 80px rgba(59, 130, 246, 0.15);
  animation: heroLogoFlip 5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes heroLogoFlip {
  0%   { transform: rotateY(0deg) scale(1); }
  20%  { transform: rotateY(180deg) scale(1.05); }
  40%  { transform: rotateY(360deg) scale(1); }
  100% { transform: rotateY(360deg) scale(1); }
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  background: linear-gradient(135deg, #60a5fa, #d4a843);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 320px;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.3);
}

.hero-card h4 {
  color: #60a5fa;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

.hero-card a {
  color: #60a5fa;
}

.hero-card a:hover {
  color: #d4a843;
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 100px 5%;
}

.section-light {
  background: #f0f4f8;
}

.section-dark {
  background: #0a1838;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #15295c;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-dark .section-title h2 {
  color: #fff;
}

.section-title p {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-title p {
  color: rgba(255,255,255,0.6);
}

.section-title .accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #d4a843);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ===== WORKING HOURS ===== */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.hour-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
  border: 1px solid rgba(21, 41, 92, 0.06);
  transition: all 0.4s ease;
}

.hour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(21, 41, 92, 0.12);
}

.hour-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #15295c, #3b82f6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #fff;
}

.hour-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #15295c;
  margin-bottom: 12px;
}

.hour-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.hour-card .time {
  font-size: 20px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 6px;
}

.hour-card .closed {
  font-size: 20px;
  font-weight: 700;
  color: #ef4444;
}

/* ===== TECH SUPPORT / SOLUTIONS GRID ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(10, 24, 56, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: all 0.4s ease;
}

.solution-card:hover .solution-overlay {
  background: linear-gradient(transparent 10%, rgba(10, 24, 56, 0.95) 100%);
}

.solution-overlay h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-overlay h3 {
  transform: translateY(0);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0a1838 0%, #15295c 50%, #1e3a6e 100%);
  position: relative;
  padding: 140px 5% 60px;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #475569;
  line-height: 1.9;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
  border: 1px solid rgba(21, 41, 92, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #d4a843);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(21, 41, 92, 0.12);
}

.value-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #15295c, #3b82f6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #fff;
}

.value-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #15295c;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, #0a1838, #15295c);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 150%;
  left: -200px;
  width: 120%;
  transform: rotate(50deg);
  background: #fff;
  height: 18px;
  filter: blur(30px);
  opacity: 0.5;
  transition: 1s ease-in-out;
}

.service-card:hover::after {
  width: 225%;
  top: -100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 60px rgba(59,130,246,0.2);
}

.service-card .icon {
  font-size: 48px;
  color: #60a5fa;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card:hover .icon {
  color: #d4a843;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== STAFF PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
  border: 1px solid rgba(21, 41, 92, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(21, 41, 92, 0.12);
}

.team-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #15295c;
  margin: 0 auto 18px;
  overflow: hidden;
}

.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #15295c;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 12px;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #15295c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #15295c, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #15295c;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: #64748b;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #15295c, #3b82f6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.3);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ===== PRODUCT PAGES ===== */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  width: 320px;
  flex-shrink: 0;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
  border: 1px solid rgba(21, 41, 92, 0.06);
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(21, 41, 92, 0.12);
}

.product-card .img-box {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .img-box img {
  transform: scale(1.05);
}

.product-card .img-box.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
}

.product-card .info {
  padding: 20px;
}

.product-card .info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #15295c;
  margin-bottom: 8px;
}

.product-card .info p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* Filter buttons */
.filter-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  list-style: none;
}

.filter-btns li {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  background: #f0f4f8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.filter-btns li:hover,
.filter-btns li.active {
  color: #fff;
  background: #15295c;
}

/* Software / Telecom content */
.content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 50px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
  border: 1px solid rgba(21, 41, 92, 0.06);
  transition: all 0.4s ease;
}

.content-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21, 41, 92, 0.1);
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.content-block img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.content-block .text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #15295c;
  margin-bottom: 10px;
}

.content-block .text p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* Network cards */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.network-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
  border: 1px solid rgba(21, 41, 92, 0.06);
  transition: all 0.4s ease;
}

.network-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(21, 41, 92, 0.12);
}

.network-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.network-card .info {
  padding: 20px;
}

.network-card .info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #15295c;
  margin-bottom: 8px;
}

.network-card .info p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* Accessories table */
.table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21, 41, 92, 0.06);
}

.styled-table thead th {
  background: #15295c;
  color: #fff;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
}

.styled-table tbody td {
  padding: 12px 16px;
  font-size: 13px;
  color: #475569;
  border-bottom: 1px solid #f0f4f8;
}

.styled-table tbody tr:hover {
  background: #f0f4f8;
}

.styled-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a1838;
  color: #fff;
  text-align: center;
  padding: 50px 5% 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  padding: 3px;
  filter: none;
  animation: logoFlip 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: #25d366;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 { font-size: 38px; }
  .page-hero h1 { font-size: 36px; }
  .section-title h2 { font-size: 32px; }
  .solutions-grid,
  .services-grid,
  .network-grid,
  .values-grid,
  .team-grid,
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .table-wrapper { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #0a1838;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    border-radius: 0;
    display: none;
  }

  .nav-menu > li:hover .nav-dropdown {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    display: block;
    background: none;
    border: none;
  }

  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero { min-height: 35vh; padding: 120px 5% 40px; }
  .hero { padding: 100px 5% 80px; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-cards { flex-direction: column; align-items: center; }
  .hero-card { max-width: 100%; }
  .section { padding: 60px 5%; }
  .section-title h2 { font-size: 26px; }
  .section-title p { font-size: 14px; }
  .solutions-grid,
  .services-grid,
  .network-grid,
  .values-grid,
  .team-grid,
  .hours-grid { grid-template-columns: 1fr; }
  .content-block { flex-direction: column !important; }
  .content-block img { width: 100%; height: 200px; }
  .product-grid { grid-template-columns: 1fr; }
  .table-wrapper { grid-template-columns: 1fr; }
  .filter-btns li { padding: 6px 14px; font-size: 12px; }
  .map-container iframe { height: 250px; }
  .footer { padding: 40px 5% 24px; }
  .footer-desc { font-size: 12px; }
  .nav-logo img { height: 42px; width: 42px; }
  .nav-logo span { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .page-hero h1 { font-size: 24px; }
  .hero .tagline { font-size: 14px; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-card { padding: 18px 20px; }
  .hero-card h4 { font-size: 12px; }
  .hero-card p { font-size: 13px; }
  .section { padding: 40px 4%; }
  .section-title { margin-bottom: 36px; }
  .section-title h2 { font-size: 22px; }
  .service-card { padding: 28px 18px; }
  .service-card .icon { font-size: 36px; }
  .service-card h3 { font-size: 16px; }
  .team-card { padding: 30px 16px 24px; }
  .value-card { padding: 28px 18px; }
  .contact-item .icon { width: 42px; height: 42px; min-width: 42px; font-size: 16px; }
  .contact-form input, .contact-form textarea { padding: 12px 14px; font-size: 13px; }
  .btn-primary { padding: 12px 28px; font-size: 13px; width: 100%; text-align: center; }
  .product-card .img-box { height: 160px; }
  .filter-btns { gap: 6px; }
  .filter-btns li { padding: 5px 10px; font-size: 11px; }
  .styled-table thead th { padding: 10px 12px; font-size: 12px; }
  .styled-table tbody td { padding: 10px 12px; font-size: 12px; }
  .network-card img { height: 160px; }
  .content-block { padding: 20px; gap: 20px; }
  .content-block .text h3 { font-size: 18px; }
  .content-block .text p { font-size: 13px; }
  .footer-socials a { width: 36px; height: 36px; font-size: 14px; }
  .footer-whatsapp { font-size: 13px; padding: 8px 18px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
