/* Reset and base styles - Build: 2024-01-01 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  filter: invert(1) brightness(2);
  transition: transform 0.3s ease;
}

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

/* Lottie animation containers */
#header-logo-animation {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

#header-logo-animation:hover {
  transform: scale(1.1);
}

.logo-text {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 101;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    gap: 2rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .nav-container {
    flex-direction: row;
    gap: 0;
    padding: 0 20px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://picsum.photos/id/1586/1920/1080') center/cover;
  opacity: 0.1;
  z-index: 1;
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

/* Keyframes for logo animations */
@keyframes floatAndPulse {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
  }
  75% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: invert(1) brightness(2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: invert(1) brightness(2.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  }
}

.hero-logo {
  text-align: left;
  margin-bottom: 2rem;
}

.hero-logo-icon {
  width: 120px;
  height: 120px;
  filter: invert(1) brightness(2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: transform 0.4s ease;
  animation: floatAndPulse 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
}

.hero-logo-icon:hover {
  transform: scale(1.2) rotate(10deg) translateY(-5px);
  animation-play-state: paused;
}

/* Hero layout columns */
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right {
  text-align: left;
}

/* Lottie animation containers */
.hero-animation-container {
  width: 90px;
  height: 90px;
  margin: 0;
  transition: transform 0.4s ease;
  animation: floatAndPulse 4s ease-in-out infinite;
  filter: invert(1) brightness(2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-animation-container:hover {
  transform: scale(1.2) rotate(10deg) translateY(-5px);
  animation-play-state: paused;
}

#hero-logo-animation {
  width: 100%;
  height: 100%;
}

.hero-logo-text {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: floatAndPulse 4s ease-in-out infinite 0.5s;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
}

.cta-button {
  background: #dc2626;
  color: white;
  border: 2px solid #dc2626;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

/* Service Images */
.service-image {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

/* About Company Section */
.about-company {
  padding: 100px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
}

/* Contact Section */
.contact {
  background-color: #f8fafc;
  padding: 4rem 0;
}

.contact-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-item p {
  margin: 0.5rem 0;
  color: #4b5563;
}

.cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  padding: 2rem;
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-section .cta-button:hover {
  background: #b91c1c;
}

/* Capabilities Section */
.capabilities {
  padding: 100px 0;
  background: #f8f9fa;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capability {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.capability-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.capability h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.capability p {
  color: #666;
  line-height: 1.6;
}

/* Industries Section */
.industries {
  padding: 100px 0;
  background: white;
}

.industries-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.industries-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.industry-list {
  display: grid;
  gap: 1.5rem;
}

.industry-item strong {
  color: #1e40af;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.industry-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.industries-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industries-image img {
  width: 100%;
  height: auto;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #1e40af;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-content p {
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  color: #1e40af;
  display: block;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: white;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reason {
  text-align: center;
  padding: 2rem;
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.reason h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.reason p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-left {
    justify-content: center;
  }

  .hero-right {
    text-align: center;
  }

  .hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .hero-animation-container {
    width: 13px;
    height: 13px;
    margin: 0 auto 1.5rem auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding: 60px 0;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  #header-logo-animation {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero-logo-icon {
    width: 80px;
    height: 80px;
  }

  .hero-logo-text {
    font-size: 2.5rem;
  }

  .about,
  .about-company,
  .contact,
  .capabilities,
  .industries,
  .testimonials,
  .why-choose-us {
    padding: 60px 0;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature {
    padding: 2rem;
  }

  .about-content,
  .contact-info,
  .industries-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .capabilities-grid,
  .testimonials-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .capability,
  .testimonial,
  .reason {
    padding: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Update image styles for better optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.service-image img,
.industries-image img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-image:hover img,
.industries-image:hover img,
.about-image:hover img {
  transform: scale(1.05);
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-header h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-form-header p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

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

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

.form-group label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
  transform: translateY(-1px);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

/* Checkbox Styles */
.form-checkbox {
  margin-top: 0.5rem;
}

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

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

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

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

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

/* Submit Button */
.contact-submit-btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-loader::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.contact-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) brightness(0.8);
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.contact-item a {
  color: #1e40af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-list li::before {
  content: attr(data-check);
  color: #10b981;
  font-weight: bold;
  min-width: 16px;
}

/* Active Navigation Link */
.nav-link-active {
  opacity: 1 !important;
  position: relative;
}

.nav-link-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-section {
    order: 2;
  }
  
  .contact-info-section {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-main {
    padding: 60px 0;
  }
  
  .contact-form-section {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-section {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 1.25rem;
  }
  
  .contact-item {
    gap: 0.75rem;
  }
  
  .contact-icon {
    min-width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
}
