.main { margin: 54px auto 0 auto; }
@media only screen and (max-width: 1200px) { .main { margin: 49px auto 0 auto; } }
@media only screen and (max-width: 600px) { .main { margin: 46px auto 0 auto; } .main__hero { min-height: 160px; } }


/* ====== HERO SECTION (background image + frosted glass) ====== */
.ct__heroSection {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 20px 80px 20px;
}
.ct__heroSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../../images/contact.jpg');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  z-index: 0;
}
.ct__heroSection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

/* ====== CONTENT CONTAINER ====== */
.ct__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ====== PAGE TITLE ====== */
.ct__title {
  text-align: center;
  color: white;
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.ct__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  margin: 8px 0 0 0;
}
@media only screen and (max-width: 1050px) {
  .ct__title { font-size: 32px; }
  .ct__subtitle { font-size: 16px; }
}
@media only screen and (max-width: 600px) {
  .ct__title { font-size: 26px; }
  .ct__subtitle { font-size: 15px; }
}

/* ====== GLASS CARDS GRID ====== */
.ct__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media only screen and (max-width: 850px) {
  .ct__grid { grid-template-columns: 1fr; }
}

/* ====== FROSTED GLASS CARD ====== */
.ct__card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ct__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ====== CARD HEADER ====== */
.ct__cardHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px 0;
}
.ct__cardIcon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(128, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}
.ct__cardTitle {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* ====== BIG CONTACT LINKS ====== */
.ct__bigLinks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct__bigLink {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ct__bigLink:hover {
  background: rgba(128, 0, 0, 0.35);
  border-color: rgba(128, 0, 0, 0.4);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.ct__bigLinkIcon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(128, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ct__bigLink:hover .ct__bigLinkIcon {
  background: rgba(128, 0, 0, 0.8);
  transform: scale(1.08);
}
.ct__bigLinkText {
  display: flex;
  flex-direction: column;
}
.ct__bigLinkLabel {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
.ct__bigLinkValue {
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 2px;
}
@media only screen and (max-width: 1050px) {
  .ct__bigLinkIcon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 20px;
  }
  .ct__bigLinkValue {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .ct__bigLink {
    padding: 14px 16px;
    gap: 14px;
  }
  .ct__bigLinkIcon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
    border-radius: 12px;
  }
  .ct__bigLinkValue {
    font-size: 18px;
  }
}

/* ====== CONTACT ROWS ====== */
.ct__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ct__row:last-child {
  border-bottom: none;
}
.ct__rowIcon {
  width: 20px;
  min-width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-top: 3px;
}
.ct__rowContent {
  flex: 1;
}
.ct__rowLabel {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 3px 0;
}
.ct__rowValue {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5em;
}
.ct__rowValue a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ct__rowValue a:hover {
  color: #fff;
  text-decoration: underline;
}
.ct__rowValue--companyName {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ct__rowValue--small {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* ====== PERSON ROW ====== */
.ct__person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ct__person:last-child {
  border-bottom: none;
}
.ct__personIcon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(128, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}
.ct__personInfo {
  flex: 1;
}
.ct__personName {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
.ct__personRole {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 2px 0 0 0;
}
.ct__personContact {
  font-size: 17px;
  font-weight: 600;
  color: white;
  margin: 6px 0 0 0;
}
.ct__personContact a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ct__personContact a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ====== HOURS ====== */
.ct__hours {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.7), rgba(46, 125, 50, 0.5));
  border: 2px solid rgba(76, 175, 80, 0.5);
  border-radius: 14px;
  margin: 20px 0 0 0;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25);
}
.ct__hoursIcon {
  font-size: 26px;
  color: #a5d6a7;
}
.ct__hoursText {
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.ct__hoursText strong {
  font-weight: 800;
  color: #a5d6a7;
  font-size: 22px;
}

/* ====== SOCIAL LINKS ====== */
.ct__socials {
  display: flex;
  gap: 12px;
  margin: 8px 0 0 0;
}
.ct__socialLink {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.ct__socialLink:hover {
  background: rgba(128, 0, 0, 0.6);
  border-color: rgba(128, 0, 0, 0.5);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ====== FULL-WIDTH CARD ====== */
.ct__card--full {
  grid-column: 1 / -1;
}

/* ====== MAP SECTION ====== */
.ct__mapSection {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #f9f6f6;
}
.ct__mapWrapper {
  width: 100%;
  height: 450px;
  position: relative;
}
.ct__mapWrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media only screen and (max-width: 600px) {
  .ct__mapWrapper {
    height: 350px;
  }
}

/* ====== RESPONSIVE ====== */
@media only screen and (max-width: 1050px) {
  .ct__heroSection {
    padding: 140px 15px 60px 15px;
  }
  .ct__card {
    padding: 28px 24px;
  }
  .ct__cardTitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .ct__heroSection {
    padding: 120px 12px 50px 12px;
    min-height: auto;
  }
  .ct__content {
    gap: 30px;
  }
  .ct__card {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .ct__cardHeader {
    margin: 0 0 18px 0;
  }
  .ct__cardIcon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }
  .ct__cardTitle {
    font-size: 18px;
  }
  .ct__rowValue {
    font-size: 14px;
  }
}
