/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  color: white;
  background-image: url(https://globa3.com/consulting/img/bg-top.jpg);
  overflow: hidden;
  background-size: cover;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blur-circle {
  position: fixed;
  border-radius: 50%;
  filter: blur(clamp(30px, 5vw, 60px));
  z-index: -1;
}

.blur-1 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(175, 199, 221, 0.3) 42%, rgba(0, 74, 143, 0.11) 100%);
  top: 20vh;
  left: 10vw;
  transform: rotate(45deg);
}

.blur-2 {
  width: clamp(150px, 25vw, 300px);
  height: clamp(150px, 25vw, 300px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(175, 199, 221, 0.2) 42%, rgba(0, 74, 143, 0.08) 100%);
  top: 60vh;
  left: 5vw;
  transform: rotate(45deg);
}

.blur-3 {
  width: clamp(180px, 28vw, 350px);
  height: clamp(180px, 28vw, 350px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(175, 199, 221, 0.8) 42%, rgba(0, 74, 143, 0.3) 100%);
  top: 70vh;
  right: 5vw;
  transform: rotate(-56deg);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 5vw, 3rem);
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.logo {
  height: clamp(30px, 5vw, 50px);
  width: auto;
}

.nav-divider {
  width: 1px;
  height: clamp(25px, 4vw, 40px);
  background-color: #ffffff45;
}

.nav-text {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.42px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger span:first-child {
  width: clamp(20px, 3vw, 34px);
}

.hamburger span:last-child {
  width: clamp(14px, 2vw, 22px);
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 130px clamp(1rem, 5vw, 3rem) 160px clamp(1rem, 5vw, 3rem);
  align-items: top;
}

.hero-main {
  max-width: 800px;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-sidebar {
  max-width: 100%;
  padding: clamp(1rem, 3vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-top: 300px;
}

.hero-description {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  opacity: 0.9;
}

.discover-more {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 50px 0 0 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.discover-icon {
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  transition: transform 0.3s ease;
}

.discover-more:hover .discover-icon {
  transform: scale(1.1);
}

/* Who We Are Section */
.who-we-are {
  padding: 130px 0 0 0;
  background: white;
}

.who-we-are h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  color: #000;
}

.section-intro {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #1b1a1a;
  margin-bottom: 3rem;
  max-width: 800px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-top: 5rem;
  margin-bottom: -8rem;
}

.team-card {
  background: white;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 0;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.team-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.team-card p {
  color: #9b9b9b;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  border-bottom: 1px solid #000;
  padding-bottom: 0.25rem;
  width: fit-content;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #004a8f;
}

.read-more img {
  width: 16px;
  height: 16px;
}

.experience-section {
  margin-top: 1rem;
}

.experience-text {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #000;
}

.stakeholders-list {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
}

.stakeholders-list li {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.stakeholders-list li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: #004a8f;
  border-radius: 50%;
  transform: rotate(-45deg);
}

/* What We Do Section */
.what-we-do {
  padding: 130px 0 130px 0;
  background: white;
  background-image: url(https://globa3.com/consulting/img/bg-white.jpg);
  background-size: cover;
}

.what-we-do h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: #000;
}

.what-we-do .section-intro {
  margin-bottom: 2rem;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #004a8f;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  border-bottom: 1px solid #004a8f;
  padding-bottom: 0.25rem;
  width: fit-content;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: #003366;
}

.cta-link img {
  width: 16px;
  height: 16px;
}

/* Services Section */
.services {
  padding: clamp(4rem, 8vw, 6rem) 0 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.service-card {
  background: white;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: clamp(40px, 6vw, 57px);
  height: clamp(40px, 6vw, 57px);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: #9b9b9b;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.5;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-tags span {
  padding: 3px 10px;
  border: 1px solid #efefef;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #000;
  white-space: nowrap;
  border-radius: 100px;
}

/* Philosophy Section */
.philosophy {
  padding: 240px 0 160px 0;
  text-align: center;
  background-image: url(https://globa3.com/consulting/img/bg-blue.jpg);
  background-size: cover;
}

.philosophy-header {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #999999;
  margin-bottom: 1rem;
}

.philosophy h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.2;
}

/* Pillars Section */
.pillars {
  padding: 80px 0 0 0;
  text-align: left;
}

.pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.pillar-reverse {
  direction: rtl;
}

.pillar-reverse > * {
  direction: ltr;
}

.pillar-images {
  position: relative;
  height: clamp(300px, 40vw, 500px);
  border-radius: 10px;
  overflow: hidden;
}

.pillar-main-img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.pillar-small-img {
  position: absolute;
  border-radius: 10px;
  object-fit: cover;
}

.pillar-small-1 {
  width: 35%;
  height: 35%;
  top: 0;
  right: 0;
}

.pillar-small-2 {
  width: 35%;
  height: 60%;
  bottom: 0;
  right: 0;
}

.pillar-single-img {
  width: 100%;
  height: clamp(250px, 30vw, 400px);
  object-fit: cover;
  border-radius: 10px;
}

.pillar-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.pillar-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #c1c1c1;
  line-height: 1.6;
}

/* Philosophy Points */
.philosophy-points {
  padding: 0 0 160px 0;
  background: white;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.point h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #004a8f;
  margin-bottom: 1rem;
}

.point p {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  color: #5f5f5f;
  line-height: 1.6;
}

/* Why It Matters */
.why-matters {
  padding: 130px 0;
  background: white;
}

.why-matters h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #000;
  margin-bottom: 2rem;
}

.why-matters p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #1b1a1a;
  line-height: 1.5;
  max-width: 900px;
}

.columns {
    display: flex;
    gap: 8rem;
}

#about > div > div.columns > div:nth-child(1) {
    width: 100%;
}

#pillars > div > div:nth-child(3) {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-image: url('https://c.animaapp.com/mesrnuyeL1y6h6/img/rectangle-8.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-card {
  background: #004a8f;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 8px;
  max-width: 600px;
  color: white;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  cursor: pointer;
}

.cta-icon {
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  width: 70%;
}

.address p {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  line-height: 1.6;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: clamp(40px, 6vw, 60px);
  width: auto;
  margin-bottom: 1rem;
}

.copyright {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  margin-bottom: 0.5rem;
}

.rights {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 470px;
    gap: 4rem;
  }
  
  .pillar {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr;
    align-items: start;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  
  .footer-brand {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .points-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {

.what-we-do {
    padding: 80px 0;
}

.why-matters {
    padding: 0 0 40px 0;
}

.philosophy-points {
    padding: 0 0 80px 0;
}

.cta-section {
    padding: 80px 0;
}

.footer {
    padding: 80px 0;
    text-align: center;
}

.footer-addresses {
    width: 100%;
}

.philosophy {
    padding: 240px 0 100px;
}

.columns {
    flex-wrap: wrap;
    gap: 0px;
}

.section-intro {
    margin-bottom: 10px;
}

.who-we-are {
    padding: 60px 0 0 0;
}

.hero-content {
    padding-bottom: 60px;
    padding-top: 60px;
    gap: 0;
}

.discover-more {
    padding-top: 30px;
}
  
  .hero-sidebar {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 60px;
  }
  
  .hamburger span:first-child {
    width: 24px;
  }
  
  .hamburger span:last-child {
    width: 18px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Side Menu Styles */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
  right: 0;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.side-menu-logo {
  height: 40px;
  width: auto;
}

.close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-menu:hover {
  background-color: #f5f5f5;
}

.side-menu-links {
  flex: 1;
  list-style: none;
  padding: 2rem 0;
}

.side-menu-links li {
  margin: 0;
}

.side-menu-links a {
  display: block;
  padding: 1rem 2rem;
  color: #333;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.side-menu-links a:hover {
  background-color: #f8f9fa;
  border-left-color: #004a8f;
  color: #004a8f;
}

.side-menu-footer {
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.side-menu-footer p {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(50px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #000;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(10px, -6px);
}

.close-modal:hover {
  background-color: #f5f5f5;
  color: #333;
}

.modal-body {
  padding: 2rem;
}

.modal-subtitle {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #004a8f;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #004a8f;
  border-color: #004a8f;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.submit-btn {
  background: #004a8f;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #003366;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 74, 143, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Form Success/Error States */
.form-success,
.form-error {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.form-success {
  background: #f0f9f0;
  border: 1px solid #4caf50;
}

.form-error {
  background: #fdf2f2;
  border: 1px solid #f44336;
}

.success-icon,
.error-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.success-icon {
  background: #4caf50;
  color: white;
}

.error-icon {
  background: #f44336;
  color: white;
}

.form-success h3,
.form-error h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-success h3 {
  color: #2e7d32;
}

.form-error h3 {
  color: #c62828;
}

.form-success p,
.form-error p {
  color: #666;
  line-height: 1.5;
}

.form-error a {
  color: #004a8f;
  text-decoration: underline;
}

/* Responsive Design for Menu and Modal */
@media (max-width: 768px) {
  .side-menu {
    width: 100%;
    right: -100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  
  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal-header,
  .modal-body {
    padding: 1rem;
  }
  
  .contact-form {
    gap: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
  }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}
