/*==================================================
    GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');
/*==================================================
    ROOT VARIABLES
==================================================*/ :root {
  --primary: #111111;
  --secondary: #B88A44;
  --text: #666666;
  --light: #f8f8f8;
  --white: #ffffff;
  --border: #e7e7e7;
  --heading: 'Cormorant Garamond', serif;
  --body: 'Jost', sans-serif;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .08);
}
/*==================================================
    RESET
==================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--text);
  background: #fafafa;
  line-height: 1.8;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  transition: .35s;
}
section {
  padding: 20px 0;
}
.container {
  max-width: 1200px;
}
/*==================================================
    TYPOGRAPHY
==================================================*/
h1, h2, h3, h4, h5 {
  font-family: var(--heading);
  color: #111;
}
.section-title {
  margin-bottom: 60px;
}
.section-title span {
  display: block;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}
.section-title h2 {
  font-size: 52px;
  margin-bottom: 15px;
}
.section-title p {
  max-width: 650px;
  margin: auto;
}

/*==================================================
    CONTACT SECTION
==================================================*/
.contact-section {
  background: #fafafa;
}
.contact-info {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.contact-info > p {
  margin-bottom: 35px;
}
/*==================================================
    INFO BOX
==================================================*/
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 22px;
  flex-shrink: 0;
}
.info-box h5 {
  font-size: 22px;
  margin-bottom: 8px;
}
.info-box p {
  margin: 0;
  color: #777;
}
/*==================================================
    SOCIAL LINKS
==================================================*/
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}
.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 18px;
}
.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}
.footer-logo-image {
  width: 30%;
}
/*==================================================
    CONTACT FORM
==================================================*/
.contact-form {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow);
}
.contact-form h2 {
  font-size: 42px;
  margin-bottom: 30px;
}
.form-control {
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  box-shadow: none;
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(184, 138, 68, .15);
}
textarea.form-control {
  height: auto;
  resize: vertical;
  padding-top: 18px;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #b42318;
  background-image: none;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #16803c;
  background-image: none;
}
.invalid-feedback {
  color: #b42318;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
}
.form-status {
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 14px 18px;
}
.form-status.is-success {
  background: #edf9f0;
  border-color: #b8e0c2;
  color: #166534;
}
.form-status.is-error {
  background: #fff1f0;
  border-color: #f4bbb6;
  color: #9f241b;
}
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.recaptcha-wrapper {
  min-height: 78px;
}
.captcha-error {
  color: #b42318;
  display: none;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
}
.captcha-error.show {
  display: block;
}
/*==================================================
    SEND BUTTON
==================================================*/
.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 42px;
  font-size: 16px;
  font-weight: 600;
  transition: .35s;
}
.btn-send:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-send:focus-visible {
  outline: 3px solid rgba(184, 138, 68, .4);
  outline-offset: 3px;
}
.btn-send:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.btn-send .fa-spinner {
  animation: contact-spin .8s linear infinite;
}
@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}
/*==================================================
    LOCATION
==================================================*/
.location-section {
  background: var(--white);
}
.map-wrapper {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}


/*==================================================
    ANIMATION
==================================================*/
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/*==================================================
    RESPONSIVE
==================================================*/
@media(max-width:991px) {
  section {
    padding: 80px 0;
  }
  .contact-hero {
    padding: 100px 0;
  }
  .contact-hero h1 {
    font-size: 54px;
  }
  .contact-info, .contact-form {
    padding: 35px;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
    margin-top: 25px;
  }
}
@media(max-width:767px) {
  section {
    padding: 65px 0;
  }
  .contact-hero {
    padding: 80px 0;
  }
  .contact-hero h1 {
    font-size: 38px;
  }
  .contact-hero p {
    font-size: 16px;
  }
  .contact-info, .contact-form {
    padding: 25px;
  }
  .contact-info h2, .contact-form h2 {
    font-size: 32px;
  }
  .section-title h2 {
    font-size: 38px;
  }
  .cta-box {
    padding: 45px 25px;
  }
  .cta-box h2 {
    font-size: 36px;
  }
  .map-wrapper iframe {
    height: 320px;
  }
  .footer-section h3 {
    font-size: 30px;
  }
}
@media(max-width:576px) {
  .social-links, .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-send, .btn-contact {
    width: 100%;
  }
  .accordion-button {
    font-size: 18px;
    padding: 18px;
  }
  .info-box {
    gap: 15px;
  }
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .recaptcha-wrapper {
    overflow-x: auto;
    padding-bottom: 4px;
  }
}
/*==================================================
    END
==================================================*/
