/* ==========================================================================
   GLASSWICK LIGHT MINIMALIST CONTACT PAGE STYLE (SENIOR DEV EDITION)
   ========================================================================== */

:root {
  --color-primary: #054375;
  --color-primary-dark: #021a2e;
  --color-accent: #679999;
  --color-text-dark: #222c35;
  --color-text-muted: #5f6d7a;
  --color-bg-card: #f8fafc;
  --color-border: rgba(5, 67, 117, 0.08);
  --color-white: #ffffff;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", "Outfit", sans-serif;
  --font-brand: "neue-aachen-pro", sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@font-face {
  font-family: "Granse";
  src: url("../fonts/granse.bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.contact-redesign {
  background-color: var(--color-white);
  padding: 100px 0;
  font-family: var(--font-sans);
  color: var(--color-text-dark);
}

/* Page Intro Header */
.gw-minimal-intro {
  margin-bottom: 70px;
}

.gw-minimal-intro h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.gw-minimal-intro h2 {
  font-family: "Granse";
  font-size: 46px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 20px;
}

.gw-minimal-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* 2-Column Editorial Split */
.gw-split-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: start;
}

/* Left Column: Brand Pillar details */
.gw-brand-pillar {
  padding-right: 20px;
}

.gw-brand-pillar h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.gw-brand-pillar p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* Direct Action Buttons */
.gw-wa-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(5, 67, 117, 0.08);
}

.gw-wa-btn-pill:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(103, 153, 153, 0.15);
}

.gw-brand-tagline {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 35px;
  border-left: 2px solid var(--color-accent);
  padding-left: 12px;
}

/* Right Column: Premium Minimalist Cards Grid */
.gw-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.gw-contact-detail-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(5, 67, 117, 0.01);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gw-contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(5, 67, 117, 0.05);
  border-color: rgba(103, 153, 153, 0.25);
}

.gw-card-full-width {
  grid-column: span 2;
}

.gw-detail-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.gw-detail-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(103, 153, 153, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.gw-contact-detail-card:hover .gw-detail-card-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.gw-detail-card-head span {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
}

.gw-detail-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.gw-detail-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.gw-detail-card-body h3 a:hover {
  color: var(--color-accent);
}

.gw-detail-card-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.gw-email-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gw-email-row .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gw-email-row a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.gw-email-row a:hover {
  color: var(--color-accent);
}

.gw-showroom-split {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 25px;
  align-items: start;
}

.gw-showroom-address h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.gw-showroom-address p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.gw-showroom-hours h4 {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.gw-hours-minimal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gw-hours-minimal li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px dashed rgba(5, 67, 117, 0.05);
}

.gw-hours-minimal li:last-child {
  border-bottom: none;
}

.gw-hours-minimal li .day {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.gw-hours-minimal li .time {
  color: var(--color-text-muted);
}

/* Clean Map Wrapper */
.gw-minimal-map {
  background-color: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 480px;
  margin-bottom: 80px;
}

.gw-minimal-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* Responsive Overrides */
@media (max-width: 991px) {
  .contact-redesign {
    padding: 80px 0;
  }

  .gw-minimal-intro h2 {
    font-size: 38px;
  }

  .gw-split-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gw-brand-pillar {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .contact-redesign {
    padding: 60px 0 100px 0; /* Space for bottom navbar */
  }

  .gw-minimal-intro h2 {
    font-size: 32px;
  }

  .gw-contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gw-card-full-width {
    grid-column: span 1;
  }

  .gw-showroom-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gw-contact-detail-card {
    padding: 25px 20px;
  }

  .gw-minimal-map {
    height: 380px;
    margin-bottom: 60px;
  }


}
