:root {
  --primary: #222;
  --accent: #fff;
  --button: #222;
  --button-hover: #444;
  --border-radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --font-main: 'Inter', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: #fff;
  color: var(--primary);
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 70vh;
  background: url('../images/background2.png') center 20%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact {
  padding-left: 26%;
}

.hero-overlay {
  /* background: rgba(34,34,34,0.55); */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 32px;
  margin-bottom: -10%;
  margin-top: auto;
}

.logo-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-icon {
  font-size: 48px;
  color: var(--accent);
}

.logo h1 {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.subtitle {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.contact p {
  color: var(--accent);
  font-size: 1rem;
}

.btn-primary {
  background: var(--button);
  color: var(--accent);
  padding: 12px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  margin-top: auto;
}

.btn-primary:hover {
  background: var(--button-hover);
}

.cta-form-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  padding: 64px 32px;
  gap: 64px;
  flex-wrap: wrap;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary);
  max-width: 500px;
}

.form {
  background: #f7f7f7;
  padding: 32px 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 320px;
  max-width: 400px;
}

.form input,
.form select {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s;
}

.form input:focus,
.form select:focus {
  border: 1.5px solid #222;
  outline: none;
}

.checkbox {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .cta-form-section {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-content, .cta-form-section {
    padding: 24px 40px;
  }
  .form {
    padding: 20px 8px;
    min-width: unset;
    max-width: 100%;
  }
  .cta h2 {
    font-size: 1.3rem;
  }
}
/* 
.date-input.empty::-webkit-input-placeholder { color: #888; }
.date-input.empty::-moz-placeholder { color: #888; }
.date-input.empty:-ms-input-placeholder { color: #888; }
.date-input.empty::placeholder { color: #888; }

.date-input.empty {
  color: transparent;
  position: relative;
}
.date-input.empty:before {
  content: attr(placeholder);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 1rem;
} */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-group label {
  font-size: 1rem;
  color: #888;
  margin-bottom: 2px;
}
.contact-info{
  margin-bottom: 20px;
}
.contact-phone{
  margin-bottom: 10px;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 30px;
  border: 1.5px solid #bbb;
  border-radius: var(--border-radius);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  margin-right: 8px;
  box-shadow: var(--shadow);
  position: relative;
  margin-top: -12px;
}

.checkbox input[type="checkbox"]:checked {
  background: var(--button);
  border-color: var(--button);
}

.checkbox input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.services-section {
  background: #f6f7fa;
  padding: 64px 0 48px 0;
  text-align: center;
}
.services-section h2 {
  font-size: 2.2rem;
  margin-bottom: 36px;
  font-weight: 700;
  color: var(--primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px) scale(1.03);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #4a5568;
  filter: grayscale(1) brightness(0.7);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p {
  color: #555;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-section {
    padding: 36px 0 24px 0;
  }
  .contact-phone{
    font-size: 1rem;
  }
  .contact-section {
    background: #fff;
    padding: 48px 20px 64px 20px;
    text-align: center;
  }
}

.contact-section {
  background: #fff;
  padding: 48px 0 64px 0;
  text-align: center;
}
.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-section p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
}
.contact-phone {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--button);
  background: #f6f7fa;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 20px;
}
.contact-phone:hover {
  background: var(--button);
  color: #fff;
}
/* 
@media (max-width: 600px) {
  .contact-phone{
    font-size: 1rem;
  }
} */

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.contact-social, .contact-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f6f7fa;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-decoration: none;
}

.contact-social svg, .contact-mail svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-social:hover svg *, .contact-mail:hover svg * {
  fill: white;
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-social:hover, .contact-mail:hover{
  background: black;
}
.contact-social:hover rect, .contact-mail:hover rect{
  fill: black;
  transition: background 0.2s, box-shadow 0.2s;
}