/* Thebe Tech Solutions - Main Stylesheet - Updated Contact Form Layout */

/* Privacy Policy and Terms of Service Page Styles */
.privacy-content,
.terms-content {
  padding: 6rem 0;
  background: #FFFFFF;
}

.privacy-container,
.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.privacy-intro,
.terms-intro {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #E2E8F0;
}

.last-updated {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.intro-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2E2E2E;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-sections,
.terms-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-section,
.terms-section {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 85, 164, 0.1);
  transition: all 0.3s ease-in-out;
}

.privacy-section:hover,
.terms-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.privacy-section h2,
.terms-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0D1633;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #2E55A4;
  position: relative;
}

.privacy-section h2::before,
.terms-section h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #5E7FD1;
}

.privacy-section h3,
.terms-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0D1633;
  margin: 2rem 0 1rem 0;
}

.privacy-section p,
.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2E2E2E;
  margin-bottom: 1.25rem;
}

.privacy-section ul,
.terms-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li,
.terms-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 0.75rem;
  position: relative;
}

.privacy-section li::marker,
.terms-section li::marker {
  color: #2E55A4;
}

.privacy-section strong,
.terms-section strong {
  color: #0D1633;
  font-weight: 600;
}

.privacy-section a,
.terms-section a {
  color: #2E55A4;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.privacy-section a:hover,
.terms-section a:hover {
  color: #5E7FD1;
  text-decoration: underline;
}

.privacy-section .contact-info,
.terms-section .contact-info {
  background: #F8FAFC;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 1.5rem;
  border-left: 4px solid #2E55A4;
}

.privacy-section .contact-item,
.terms-section .contact-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.privacy-section .contact-item:last-child,
.terms-section .contact-item:last-child {
  margin-bottom: 0;
}

.privacy-section .contact-item strong,
.terms-section .contact-item strong {
  color: #0D1633;
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Responsive Design for Privacy Policy and Terms of Service */
@media (max-width: 768px) {
  .privacy-content,
  .terms-content {
    padding: 4rem 0;
  }
  
  .privacy-container,
  .terms-container {
    padding: 0 1rem;
  }
  
  .privacy-section,
  .terms-section {
    padding: 2rem 1.5rem;
  }
  
  .privacy-section h2,
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3,
  .terms-section h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .privacy-content,
  .terms-content {
    padding: 3rem 0;
  }
  
  .privacy-container,
  .terms-container {
    padding: 0 0.75rem;
  }
  
  .privacy-section,
  .terms-section {
    padding: 1.5rem 1rem;
  }
  
  .privacy-section h2,
  .terms-section h2 {
    font-size: 1.375rem;
  }
  
  .privacy-section .contact-info,
  .terms-section .contact-info {
    padding: 1.5rem;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2E2E2E;
  background-color: #FFFFFF;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #0D1633;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 1.875rem; font-weight: 600; }

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 1rem;
}

a {
  color: #2E55A4;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

a:hover {
  color: #5E7FD1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 85, 164, 0.1);
  transition: all 0.3s ease-in-out;
  padding: 0.75rem 0;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
}

.navbar.scrolled {
  background: rgba(13, 22, 51, 0.98);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.nav-link {
  font-weight: 500;
  color: #0D1633;
  transition: color 0.15s ease-in-out;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2E55A4;
}

.navbar.scrolled .nav-link {
  color: #FFFFFF;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: #5E7FD1;
}

.navbar.scrolled .logo {
  filter: brightness(0) invert(1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 1rem;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 0.75rem;
    height: 55px;
  }
}

.nav-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.nav-logo .logo-link:hover {
  transform: scale(1.05);
}

.nav-logo .logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .nav-logo .logo {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .nav-logo .logo {
    height: 30px;
  }
}

.nav-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0D1633;
  transition: color 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .nav-logo .logo-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .nav-logo .logo-text {
    font-size: 1rem;
  }
}

.navbar.scrolled .nav-logo .logo-text {
  color: #FFFFFF;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 640px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0D1633;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem;
    transition: left 0.3s ease-in-out;
  }
  
  .nav-menu.active {
    left: 0;
  }
}

.nav-link {
  font-weight: 500;
  color: #0D1633;
  transition: color 0.15s ease-in-out;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2E55A4;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

@media (max-width: 640px) {
  .nav-link {
    color: #FFFFFF;
    font-size: 1.125rem;
    padding: 1rem 0;
  }
  
  .nav-link::after {
    display: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #0D1633;
  margin: 3px 0;
  transition: all 0.3s ease-in-out;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D1633, #2E55A4);
  overflow: hidden;
  padding: 80px 0;
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 90vh;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
    min-height: 85vh;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-background #network-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(46, 85, 164, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(94, 127, 209, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(13, 22, 51, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #FFFFFF;
  max-width: 1200px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 100vh;
  margin-top: -40px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1rem;
    gap: 1.5rem;
    margin-top: -30px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 0.75rem;
    gap: 1.25rem;
    margin-top: -20px;
  }
}


.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #B0B0B0;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  max-width: 400px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: 
    radial-gradient(circle, rgba(46, 85, 164, 0.3) 0%, transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(94, 127, 209, 0.2) 0%, transparent 50%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: 
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite reverse;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 250px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(45deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
  }
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2E55A4, #5E7FD1);
  color: #FFFFFF;
  box-shadow: 0 4px 14px 0 rgba(46, 85, 164, 0.3);
  margin-right: 1rem;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  box-shadow: none;
  margin-right: 0;
}

.cta-button.secondary:hover {
  background: #FFFFFF;
  color: #2E55A4;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(46, 85, 164, 0.4);
}

.cta-button:focus {
  outline: 2px solid #5E7FD1;
  outline-offset: 2px;
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
}

.cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Section Styles */
.about-preview,
.services-overview,
.contact-section {
  padding: 6rem 0;
  margin: 0;
}

@media (max-width: 640px) {
  .about-preview,
  .services-overview,
  .contact-section {
    padding: 4rem 0;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1633;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (max-width: 640px) {
  .section-text {
    font-size: 1rem;
  }
}

/* About Preview */
.about-preview {
  background: #FFFFFF;
  margin: -2rem 0 0 0;
  padding: 0 0 6rem 0;
  position: relative;
  z-index: 1;
}

.about-preview .section-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 3rem;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid #2E55A4;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: #FFFFFF;
  color: #2E55A4;
  margin-top: 1.5rem;
}

.learn-more-btn:hover {
  background: #2E55A4;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-in-out;
}

.learn-more-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Services Overview */
.services-overview {
  background: #F8FAFC;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 3rem;
  text-align: center;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 20px rgba(46, 85, 164, 0.3);
  background: #F8FAFC;
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #2E55A4;
}

.service-card .service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #64748B;
}

.view-all-services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, #2E55A4, #5E7FD1);
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.view-all-services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 20px rgba(46, 85, 164, 0.3);
}

.view-all-services-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Contact Section */
.contact-section {
  background: #FFFFFF;
}

/* Removed duplicate contact-content styles - using the ones below */

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info .contact-icon {
  width: 50px;
  height: 50px;
  background: #2E55A4;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.contact-info .contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info .contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-info .contact-details p {
  color: #64748B;
  margin-bottom: 0.5rem;
}

/* Contact Form Styles - Updated to match modern design */
.contact-form .form-group {
  margin-bottom: 2rem;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  border: 2px solid #E2E8F0;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2E55A4;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 0 0 4px rgba(46, 85, 164, 0.1),
    0 4px 12px rgba(46, 85, 164, 0.15);
  transform: translateY(-2px);
}

.contact-form label {
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  color: #64748B;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 0.5rem;
  border-radius: 0.25rem;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #2E55A4;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 4px rgba(46, 85, 164, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.privacy-link {
  color: #2E55A4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.privacy-link:hover {
  color: #5E7FD1;
  text-decoration: underline;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2E55A4, #5E7FD1);
  color: #FFFFFF;
  box-shadow: 
    0 8px 20px rgba(46, 85, 164, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .submit-btn {
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .submit-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.25px;
  }
}

.submit-btn::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 ease-in-out;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 25px rgba(46, 85, 164, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Page Header */
.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0D1633, #2E55A4);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

@media (max-width: 640px) {
  .page-header {
    padding: 2rem 0;
  }
}

.page-header .header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-header .header-background #network-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-header.contact-header .tech-pattern {
  display: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 200px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .page-title {
    font-size: 2.25rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .page-subtitle {
    font-size: 1rem;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* About Content */
.about-content {
  padding: 6rem 0;
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .about-content {
    padding: 4rem 0;
  }
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
}

.about-intro .intro-text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 3rem;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: #2E55A4;
}

.about-card .card-icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.values-detail {
  text-align: center;
  margin-bottom: 6rem;
}

.values-detail h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1633;
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .values-detail h2 {
    font-size: 1.875rem;
  }
}

.values-list {
  max-width: 800px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

@media (max-width: 640px) {
  .value-item {
    flex-direction: column;
    text-align: center;
  }
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #2E55A4;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.value-icon svg {
  width: 30px;
  height: 30px;
}

.value-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  background: #F8FAFC;
  padding: 4rem;
  border-radius: 1.5rem;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1633;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .cta-section h2 {
    font-size: 1.875rem;
  }
}

.cta-section p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .cta-section p {
    font-size: 1rem;
  }
}

/* Services Content */
.services-content {
  padding: 6rem 0;
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .services-content {
    padding: 4rem 0;
  }
}

.services-content .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.service-detail-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 640px) {
  .service-detail-card {
    flex-direction: column;
    text-align: center;
  }
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-detail-card .service-icon {
  width: 100px;
  height: 100px;
  background: #2E55A4;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  flex-shrink: 0;
}

.service-detail-card .service-icon svg {
  width: 50px;
  height: 50px;
}

.service-detail-card .service-content h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0D1633;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .service-detail-card .service-content h3 {
    font-size: 1.5rem;
  }
}

.service-detail-card .service-content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .service-detail-card .service-content p {
    font-size: 1rem;
  }
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #64748B;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 700;
}

.services-cta {
  text-align: center;
  background: #F8FAFC;
  padding: 4rem;
  border-radius: 1.5rem;
}

.services-cta h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1633;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .services-cta h2 {
    font-size: 1.875rem;
  }
}

.services-cta p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .services-cta p {
    font-size: 1rem;
  }
}

/* Contact Content (Homepage) */
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 0;
}

@media (max-width: 768px) {
  .contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-section .contact-content {
    gap: 1.5rem;
  }
}

/* Contact Content (Contact Page) */
.contact-content {
  padding: 6rem 0;
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .contact-content {
    padding: 4rem 0;
  }
}

.contact-grid {
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 4rem;
  margin-bottom: 6rem;
}

.contact-form-section {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.contact-form-section .form-container {
  flex: 1;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
}

.contact-info-section,
.contact-form-section {
  width: 100%;
  min-width: 0;
}

.contact-grid .contact-form-section {
  width: 100% !important;
  min-width: 0;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 4rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-info-card h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1633;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .contact-info-card h2 {
    font-size: 1.875rem;
  }
}

.contact-info-card p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .contact-info-card p {
    font-size: 1rem;
  }
}

.contact-methods .contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-methods .method-icon {
  width: 60px;
  height: 60px;
  background: #2E55A4;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.contact-methods .method-icon svg {
  width: 30px;
  height: 30px;
}

.contact-methods .method-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-methods .method-details p {
  color: #64748B;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #2E55A4;
  font-weight: 500;
}

.contact-link:hover {
  color: #5E7FD1;
}

.business-hours {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 3rem;
}

.business-hours:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.business-hours h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0D1633;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .business-hours h3 {
    font-size: 1.5rem;
  }
}

.hours-list .hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #F8FAFC;
}

.hours-list .hours-item:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 500;
}

.hours-list .time {
  color: #64748B;
}

.form-container {
  background: linear-gradient(145deg, #FFFFFF, #F8FAFC);
  border-radius: 1.5rem;
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
  padding: 4rem 4rem;
  border: 1px solid rgba(46, 85, 164, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .form-container {
    padding: 3rem 2rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2E55A4, #5E7FD1, #2E55A4);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.form-container:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 32px 40px -12px rgba(46, 85, 164, 0.15), 
    0 16px 20px -8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0D1633;
  margin-bottom: 1rem;
  text-align: center;
}

@media (max-width: 640px) {
  .form-container h2 {
    font-size: 1.875rem;
  }
}

.form-container p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .form-container p {
    font-size: 1rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-row {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-row {
    gap: 1.25rem;
  }
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  border: 2px solid #E2E8F0;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E55A4;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 0 0 4px rgba(46, 85, 164, 0.1),
    0 4px 12px rgba(46, 85, 164, 0.15);
  transform: translateY(-2px);
}

.form-group label {
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  color: #64748B;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 0.5rem;
  border-radius: 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #2E55A4;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 4px rgba(46, 85, 164, 0.1);
}

.form-error {
  color: #EF4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  position: static;
  transform: none;
  pointer-events: auto;
  font-size: 0.875rem;
  line-height: 1.4;
}

.privacy-link {
  color: #2E55A4;
  text-decoration: underline;
}

.map-section {
  text-align: center;
}

.map-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1633;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .map-section h2 {
    font-size: 1.875rem;
  }
}

.map-container {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 4rem;
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.map-placeholder {
  height: 300px;
  background: #F8FAFC;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
}

.map-content svg {
  width: 80px;
  height: 80px;
  color: #2E55A4;
  margin-bottom: 1.5rem;
}

.map-content h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0D1633;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .map-content h3 {
    font-size: 1.5rem;
  }
}

.map-content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .map-content p {
    font-size: 1rem;
  }
}

.map-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .map-features {
    flex-direction: column;
    gap: 1rem;
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #F8FAFC;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 4rem 0;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.faq-question:hover {
  background: rgba(46, 85, 164, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
}

.faq-icon {
  font-size: 1.25rem;
  color: #2E55A4;
  transition: transform 0.3s ease-in-out;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Footer */
.footer {
  background: #0D1633;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s ease-in-out;
}

.footer-links a:hover {
  color: #5E7FD1;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: #2E55A4;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover {
  background: #5E7FD1;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s ease-in-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease-in-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-in-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-to-top,
  .hero-background {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .about-preview,
  .services-overview,
  .contact-section,
  .about-content,
  .services-content,
  .contact-content {
    padding: 1.5rem 0;
  }
}
