/* CONTACT PAGE — Madex Coatings */

.ct-hero {
  position: relative; padding: 10rem 3rem 5rem; text-align: center; overflow: hidden;
}
.ct-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,126,.1) 0%, transparent 60%);
  pointer-events: none;
}
.ct-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.ct-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.ct-hero-label {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .4em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: 1.2rem;
}
.ct-hero-title {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 1rem;
}
.ct-hero-title em { font-style: italic; color: var(--accent-gold); }
.ct-hero-sub {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
  max-width: 500px; margin: 0 auto;
}

/* Breadcrumb */
.ct-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  max-width: 1300px; margin: 0 auto; padding: 0 3rem 3rem; font-size: .8rem;
}
.ct-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .3s; }
.ct-breadcrumb a:hover { color: var(--accent-gold); }
.ct-breadcrumb .current { color: var(--text-white); }

/* Contact Cards */
.ct-cards {
  max-width: 1300px; margin: 0 auto; padding: 0 3rem 4rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.ct-card {
  padding: 2.5rem; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; text-align: center;
  transition: border-color .4s, transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
  text-decoration: none; color: var(--text-white); display: block;
}
.ct-card:hover {
  border-color: var(--accent-gold); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.ct-card-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: rgba(200,169,126,.1); display: grid; place-items: center;
  font-size: 1.5rem; transition: background .3s;
}
.ct-card:hover .ct-card-icon { background: rgba(200,169,126,.2); }
.ct-card-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  margin-bottom: .5rem;
}
.ct-card-value {
  font-size: .9rem; color: var(--accent-gold); transition: color .3s;
}
.ct-card-sub {
  font-size: .75rem; color: var(--text-muted); margin-top: .3rem;
}

/* Main Grid */
.ct-main {
  max-width: 1300px; margin: 0 auto; padding: 0 3rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}

/* Form */
.ct-form-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 3rem;
}
.ct-form-label {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .3em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: .8rem;
}
.ct-form-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 2rem; line-height: 1.2;
}
.ct-form { display: flex; flex-direction: column; gap: 1.2rem; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-field { display: flex; flex-direction: column; gap: .4rem; }
.ct-field label {
  font-size: .75rem; color: var(--text-muted); font-weight: 500;
  letter-spacing: .05em;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: .85rem 1.2rem; background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-border); color: var(--text-white);
  font-family: var(--sans); font-size: .88rem; outline: none;
  transition: border-color .3s, box-shadow .3s; border-radius: 0;
  resize: vertical;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200,169,126,.1);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(255,255,255,.2); }
.ct-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8A8A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.ct-field select option { background: #111; color: var(--text-white); }
.ct-field textarea { min-height: 130px; }
.ct-submit {
  padding: 1rem 2.5rem; background: var(--accent-gold); color: var(--bg-dark);
  border: none; font-weight: 600; font-size: .85rem; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
  align-self: flex-start;
}
.ct-submit:hover { background: #d4b88e; transform: translateY(-2px); }

/* Success message */
.ct-success {
  display: none; padding: 1.2rem 1.5rem; background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3); border-radius: 8px;
  color: #25D366; font-size: .9rem; text-align: center;
}
.ct-success.show { display: block; }

/* Info Side */
.ct-info { display: flex; flex-direction: column; gap: 2.5rem; }
.ct-info-block {}
.ct-info-label {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .3em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: 1rem;
}
.ct-info-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 1rem; line-height: 1.2;
}
.ct-info-text {
  font-size: .9rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.ct-info-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.ct-info-list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .9rem; color: var(--text-muted);
}
.ct-info-list li span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.ct-info-list li a {
  color: var(--text-muted); text-decoration: none; transition: color .3s;
}
.ct-info-list li a:hover { color: var(--accent-gold); }

/* Hours */
.ct-hours {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 2rem;
}
.ct-hours-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1.2rem;
}
.ct-hours-row {
  display: flex; justify-content: space-between; padding: .5rem 0;
  border-bottom: 1px solid var(--glass-border); font-size: .85rem;
}
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-day { color: var(--text-muted); }
.ct-hours-time { color: var(--text-white); font-weight: 500; }

/* WhatsApp CTA */
.ct-wa-cta {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.5rem 2rem; background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.2); border-radius: 10px;
  text-decoration: none; color: var(--text-white); transition: all .3s;
}
.ct-wa-cta:hover {
  background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.4);
  transform: translateY(-2px);
}
.ct-wa-icon {
  width: 48px; height: 48px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; flex-shrink: 0; font-size: 1.3rem;
}
.ct-wa-text-title { font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.ct-wa-text-sub { font-size: .78rem; color: var(--text-muted); }

/* Map Placeholder */
.ct-map {
  max-width: 1300px; margin: 0 auto; padding: 0 3rem 5rem;
}
.ct-map-inner {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--glass-border); height: 350px;
  background: var(--glass); display: grid; place-items: center;
}
.ct-map-placeholder {
  text-align: center; color: var(--text-muted);
}
.ct-map-placeholder-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: .4; }
.ct-map-placeholder-text { font-size: .85rem; }

/* Responsive */
@media(max-width:1024px){
  .ct-cards{grid-template-columns:1fr 1fr}
  .ct-main{grid-template-columns:1fr;gap:3rem}
}
@media(max-width:768px){
  .ct-hero{padding:7rem 1.5rem 3rem}
  .ct-breadcrumb{padding:0 1.5rem 2rem}
  .ct-cards{padding:0 1.5rem 3rem;grid-template-columns:1fr}
  .ct-main{padding:0 1.5rem 4rem}
  .ct-form-wrap{padding:2rem}
  .ct-form-row{grid-template-columns:1fr}
  .ct-map{padding:0 1.5rem 4rem}
}
