  
/* GLOBAL */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: #C8A24A;
  text-transform: uppercase;
}

/* HERO */
.contact-hero {
  position: relative;
  padding: 140px 20px;
  background: url("your-image.jpg") center/cover no-repeat;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
 
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 50px;
  font-family: Georgia, serif;
  margin: 10px 0;
}

.contact-hero p {
  color: #A9B0BC;
  max-width: 700px;
  margin: auto;
}

/* CONTACT MAIN */
.contact-main {
  padding: 120px 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* INFO SIDE */
.info-side h2 {
  font-size: 30px;
  font-family: Georgia, serif;
}

.info-side p {
  color: #A9B0BC;
  margin-bottom: 25px;
}

.info-card {
  display: flex;
  gap: 15px;
  padding: 18px;
  margin-bottom: 20px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,162,74,0.15);
  border-radius: 12px;
}

.info-card .icon {
  font-size: 22px;
}

.info-card h3 {
  color: #C8A24A;
  margin: 0;
}

.info-card p {
  margin: 3px 0;
  font-size: 13px;
  color: #A9B0BC;
}

/* GLASS FORM */
.glass-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(200,162,74,0.2);
  border-radius: 16px;

  padding: 30px;
}

.glass-form h2 {
  font-family: Georgia, serif;
  margin-bottom: 20px;
}

.glass-form input,
.glass-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(200,162,74,0.2);

  background: rgba(255,255,255,0.05);
  color: black;
  outline: none;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
  color: #A9B0BC;
}

/* FILE UPLOAD FULL AREA */
.glass-form input[type="file"]{
  width: 100%;
  padding: 14px !important;

  background: rgba(255,255,255,0.08);
  color: #fff;

  border: 1px dashed #C8A24A !important;
  border-radius: 12px;

  cursor: pointer;
}

/* CHOOSE FILE BUTTON */
.glass-form input[type="file"]::file-selector-button{
  background: linear-gradient(135deg, #C8A24A, #8A6B2A);
  color: #fff;

  border: none;
  padding: 10px 18px;
  border-radius: 8px;

  margin-right: 12px;
  cursor: pointer;

  font-weight: 600;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.glass-form input[type="file"]::file-selector-button:hover{
  transform: scale(1.03);
  opacity: 0.9;
}

.glass-form .forminator-button-submit {
	margin-top:20px;
  width: 100% !important;
  padding: 12px !important;
  border-radius: 10px !important;

  background: linear-gradient(135deg, #C5A021, #AA7C11) !important;
  color: white !important;
  font-weight: 600 !important;

  transition: 0.3s ease;
  border: none !important;
}

.glass-form .forminator-button-submit:hover {
  transform: scale(1.03);
}

/* MAP */
.map-section {
  padding: 120px 20px;
}

.map-section h2 {
  font-size: 36px;
  font-family: Georgia, serif;
  margin-top: 10px;
}

.map-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.map-box {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200,162,74,0.2);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(200,162,74,0.2);
}

.glass-card h3 {
  color: #C8A24A;
}

.glass-card p {
  color: #A9B0BC;
}

.glass-card button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;

  background: linear-gradient(135deg, #C8A24A, #8A6B2A);
  border: none;
  border-radius: 10px;

  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-2,
  .map-grid {
    
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}
