* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #1E3A8A;
  --secondary-color: #1E40AF;
  --accent-color: #10B981;
  --highlight-color: #F59E0B;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #F3F4F6;
  --white: #FFFFFF;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Redesigned Hero Section */
.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 2px solid rgba(16, 185, 129, 0.2);
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}

.welcome-badge i {
  font-size: 1.2rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 1200px;
  margin: 2rem auto;
  line-height: 1.8;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
  
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0;
  animation: slideUp 1s ease 0.8s forwards;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: var(--white);
}

.cta-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-primary:hover, .cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 58, 138, 0.05));
  transform: rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.slogan {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}

.elaboration {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
}

.description {
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 2rem auto;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mission Statement Section */
.mission-statement {
  padding: 6rem 0;
  background: var(--white);
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.mission-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Key Features Section */
.key-features {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Our Purpose Section */
.our-purpose {
  padding: 6rem 0;
  background: var(--white);
}

.purpose-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.purpose-text .section-title {
  text-align: left;
}

.purpose-text .section-title::after {
  left: 0;
  transform: none;
}

.purpose-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.purpose-description strong {
  color: var(--accent-color);
  font-weight: 700;
}

.purpose-backing {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.purpose-visual {
  display: flex;
  justify-content: center;
}

.purpose-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.stat-item i {
  font-size: 2rem;
  color: var(--accent-color);
}

.stat-text {
  font-weight: 600;
  color: var(--primary-color);
}

/* Services Preview Section */
.services-preview {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.services-preview .section-title {
  color: var(--white);
  text-align: center;
}

.services-preview .section-title::after {
  background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-preview {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-preview:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.service-preview i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-preview h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-preview p {
  opacity: 0.9;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.view-all-services {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-all-services:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-input, .form-textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  resize: vertical;
  margin-bottom: 2rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Social Section Updates */
.social-section {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.social-section .container {
  position: relative;
  z-index: 2;
}

.social-section h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-section h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--highlight-color);
  margin: 1rem auto;
  border-radius: 2px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-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;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.2),
    0 0 0 0 rgba(255, 255, 255, 0.3);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Individual social platform colors on hover */
.social-btn:nth-child(1):hover {
  background: #0077b5; /* LinkedIn */
  border-color: #0077b5;
  color: var(--white);
}

.social-btn:nth-child(2):hover {
  background: #1da1f2; /* Twitter */
  border-color: #1da1f2;
  color: var(--white);
}

.social-btn:nth-child(3):hover {
  background: #4267b2; /* Facebook */
  border-color: #4267b2;
  color: var(--white);
}

.social-btn:nth-child(4):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram */
  border-color: #bc1888;
  color: var(--white);
}

.social-btn:active {
  transform: translateY(-1px);
}

/* Modern Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0f172a 100%);
  color: var(--white);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Company Info Section */
.company-info {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent-color);
  width: 16px;
  text-align: center;
}

/* Footer Headings */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  border-radius: 4px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-links a i {
  color: var(--accent-color);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

/* Newsletter Section */
.newsletter {
  max-width: 280px;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  margin-bottom: 2rem;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  background: var(--accent-color);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: #059669;
  transform: scale(1.05);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--text-dark);
}

.social-link.linkedin:hover {
  background: #0077b5;
  color: var(--white);
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: var(--white);
}

.social-link.facebook:hover {
  background: #4267b2;
  color: var(--white);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--white);
}

.footer-tagline {
  text-align: center;
  flex: 1;
}

.footer-tagline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.mission-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--highlight-color);
  margin-top: 0.5rem;
}

.mission-text i {
  color: var(--accent-color);
}

.certifications {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--highlight-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.cert-badge i {
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

/* Contact CTA Section */
.contact-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-cta .cta-primary,
.contact-cta .cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-cta .cta-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.contact-cta .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.contact-cta .cta-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.contact-cta .cta-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Footer Responsive */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  
  .company-info,
  .newsletter {
    max-width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .legal-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .certifications {
    justify-content: center;
  }

  .elaboration {
    font-size: 2.5rem;
  }

  .input-group {
    flex-direction: column;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .purpose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .purpose-text .section-title {
    text-align: center;
  }
  
  .purpose-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .purpose-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Social section responsive */
  .social-section h3 {
    font-size: 1.5rem;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Header Mobile */
  .nav-container {
    padding: 0.5rem 0.75rem;
  }
  
  .logo-text {
    display: none;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .nav-links {
    padding: 1rem;
  }
  
  .nav-link {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  /* Footer Mobile */
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-main {
    padding: 2rem 0;
    gap: 2rem;
  }
  
  .footer-section {
    gap: 1rem;
  }
  
  .company-info .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .footer-links {
    gap: 0.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    padding: 1rem 0;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .certifications {
    flex-direction: column;
    align-items: center;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-card, .service-preview {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .purpose-stats {
    flex-direction: column;
  }
  
  /* Social section mobile responsive */
  .social-section {
    margin-top: 20px;
    padding: 3rem 0;
  }
  
  .social-section h3 {
    font-size: 1.25rem;
  }
  
  .social-icons {
    gap: 0.75rem;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
