/* Contacts Page Styles */
* {
  box-sizing: border-box;
}

.contacts-container {
  width: 100%;
  min-height: 100vh;
  background: rgba(255,255,255,1);
  position: relative;
  font-family: 'Roboto', 'Inter', sans-serif;
}

/* Header Section */
.contacts-header {
  width: 100%;
  height: 100px;
  background: rgba(239,127,26,1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.contacts-header .logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contacts-header .logo-section .logo {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-header .logo-section .logo-text {
  width: 163px;
  height: 23px;
  background: rgba(255,255,255,1);
  border-radius: 4px;
}

.contacts-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contacts-header .nav-menu .nav-item {
  color: rgba(255,255,255,1);
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contacts-header .nav-menu .nav-item:hover {
  opacity: 0.8;
}

.contacts-header .nav-menu .nav-item.projects {
  position: relative;
}

.contacts-header .nav-menu .nav-item.projects::after {
  content: '';
  width: 14px;
  height: 7px;
  background: rgba(255,255,255,1);
  position: absolute;
  top: 15px;
  right: -20px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* Hero Section */
.contacts-hero {
  width: 100%;

  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.contacts-hero .hero-content {
 
  height: 100%;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;

}

.contacts-hero .hero-left {

}

.contacts-hero .hero-left .hero-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: rgba(239,127,26,1);
  border-radius: 20px;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
}

.contacts-hero .hero-right {
  padding-left: 2rem;
}

.contacts-hero .hero-right .hero-title {
  color: rgba(239,127,26,1);
  font-family: Roboto;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contacts-hero .hero-right .hero-title::after {
  content: '';
  width: 100%;
  height: 4px;
  background: rgba(239,127,26,1);
  display: block;
  margin-top: 1rem;
}

.contacts-hero .hero-right .hero-description {
  color: rgba(239,127,26,1);
  font-family: Roboto;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  margin-top: 2rem;
}

/* Contact Methods Section */
.contact-methods {
  padding: 6rem 2rem;
  background: rgba(255,255,255,1);
}

.contact-methods .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-methods .methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.contact-method-card {
  background: rgba(239,127,26,1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-method-card .method-icon {
  width: 123px;
  height: 123px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method-card .method-icon svg {
  width: 60px;
  height: 60px;
}

.contact-method-card .method-title {
  color: rgba(255,255,255,1);
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-method-card .method-description {
  color: rgba(239,127,26,1);
  font-family: Roboto;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-method-card .method-link {
  background: rgba(255,255,255,1);
  color: rgba(239,127,26,1);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-method-card .method-link:hover {
  background: rgba(239,127,26,1);
  color: rgba(255,255,255,1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Organization Details Section */
.organization-details {
  width: 100%;
  min-height: 500px;
  background: rgba(239,127,26,1);
  position: relative;
  padding: 6rem 2rem;
}

.organization-details::before {
  content: '';
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,1);
  position: absolute;
  top: 0;
  left: 0;
}

.organization-details .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.organization-details .section-title {
  color: rgba(255,255,255,1);
  font-family: Roboto;
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 3rem;
}

.organization-details::after {
  content: '';
  width: 100%;
  height: 4px;
  background: rgba(239,127,26,1);
  position: absolute;
  bottom: 0;
  left: 0;
}

.organization-details .org-info {
  color: rgba(255,255,255,1);
  font-size: 32px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Location Section */
.location-section {
  width: 100%;
  min-height: 600px;
  background: rgba(255,255,255,1);
  position: relative;
  padding: 6rem 2rem;
}

.location-section::before {
  content: '';
  width: 100%;
  height: 4px;
  background: rgba(239,127,26,1);
  position: absolute;
  top: 0;
  left: 0;
}

.location-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.location-section .section-title {
  color: rgba(239,127,26,1);
  font-family: Roboto;
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 3rem;
}

.location-section .map-container {
  width: 100%;
  margin-top: 2rem;
}

.location-section .map-container #yandex-map {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location-section .map-placeholder .map-content {
  text-align: center;
  color: rgba(239,127,26,1);
}

.location-section .map-placeholder .map-content h3 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 1rem;
}

.location-section .map-placeholder .map-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  opacity: 0.8;
}

/* Footer Section */
.contacts-footer {
  width: 100%;
  min-height: 400px;
  background: rgba(239,127,26,1);
  position: relative;
  padding: 4rem 2rem 2rem;
}

.contacts-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contacts-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contacts-footer .footer-section {
  color: rgba(255,255,255,1);
}

.contacts-footer .footer-section h4 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 1rem;
}

.contacts-footer .footer-section p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contacts-footer .footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacts-footer .footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.contacts-footer .footer-section .footer-links a {
  color: rgba(255,255,255,1);
  text-decoration: none;
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.contacts-footer .footer-section .footer-links a:hover {
  opacity: 0.8;
}

.contacts-footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contacts-footer .footer-bottom p {
  color: rgba(255,255,255,1);
  font-family: Roboto;
  font-weight: 400;
  font-size: 24px;
  margin: 0;
}

.contacts-footer::before {
  content: '';
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,1);
  position: absolute;
  top: 0;
  left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contacts-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .contacts-hero .hero-right {
    padding-left: 0;
  }
  
  .contacts-hero .hero-right .hero-title {
    font-size: 48px;
  }
  
  .contacts-hero .hero-right .hero-description {
    font-size: 24px;
  }
  
  .contact-methods .methods-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contacts-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contacts-header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 1rem;
  }
  
  .contacts-header .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .contacts-header .nav-menu .nav-item {
    font-size: 16px;
  }
  
  .contacts-hero {
    padding: 2rem 1rem;
  }
  
  .contacts-hero .hero-right .hero-title {
    font-size: 36px;
  }
  
  .contacts-hero .hero-right .hero-description {
    font-size: 20px;
  }
  
  .contact-methods {
    padding: 3rem 1rem;
  }
  
  .organization-details {
    padding: 3rem 1rem;
  }
  
  .organization-details .section-title {
    font-size: 40px;
  }
  
  .organization-details .org-info {
    font-size: 20px;
  }
  
  .location-section {
    padding: 3rem 1rem;
  }
  
  .location-section .section-title {
    font-size: 40px;
  }
  
  .contacts-footer {
    padding: 2rem 1rem 1rem;
  }
  
  .contacts-footer .footer-section h4 {
    font-size: 20px;
  }
  
  .contacts-footer .footer-section p,
  .contacts-footer .footer-section .footer-links a {
    font-size: 16px;
  }
  
  .contacts-footer .footer-bottom p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-method-card {
    padding: 2rem 1rem;
    min-height: 350px;
  }
  
  .contact-method-card .method-icon {
    width: 80px;
    height: 80px;
  }
  
  .contact-method-card .method-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .contact-method-card .method-title {
    font-size: 16px;
  }
  
  .contact-method-card .method-description {
    font-size: 20px;
  }
  
  .contact-method-card .method-link {
    padding: 0.8rem 1.5rem;
    font-size: 16px;
  }
}
