* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }

/* TOP BAR */
.top-bar {
  background: #6b1212;
  color: #fff;
  padding: 7px 0;
  font-size: 13px;
}
.top-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.top-bar a { color: #fff; }
.top-bar .tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-bar .tb-item svg {
  width: 14px; height: 14px; fill: #fff; opacity: 0.9;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 55px;
  width: auto;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}
nav ul li a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
nav ul li a.active,
nav ul li a:hover {
  border-bottom-color: #6b1212;
}

/* PAGE WRAPPER */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TWO-COLUMN MAIN */
.main-columns {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 30px;
  padding-top: 0;
}

/* INFO BANNER */
.info-banner {
  background: #f2f2f2;
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0;
}

/* SERVICE CARDS */
.service-card {
  display: flex;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 15px;
}
.service-card:first-of-type { padding-top: 15px; }
.service-card .thumb {
  width: 120px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}
.service-card h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 6px;
}
.service-card h2 a {
  color: #333;
  border-bottom: 2px solid #6b1212;
  padding-bottom: 2px;
}
.service-card h2 a:hover { color: #6b1212; }
.service-card .price {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
  display: block;
}
.service-card .price a { color: #333; }
.service-card .consult {
  color: #0073aa;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}
.service-card .consult:hover { text-decoration: underline; }
.service-card .desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* RIGHT SIDEBAR */
.right-col {
  padding-top: 0;
}
.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  position: sticky;
  top: 80px;
}
.contact-card .cc-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #ccc;
  margin: 0 auto 12px;
  overflow: hidden;
  background: #f9f9f9;
}
.contact-card .cc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-card .cc-name {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222;
}
.contact-card .cc-label {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
}
.contact-card .cc-contacts {
  margin-bottom: 14px;
}
.contact-card .cc-contacts .ci {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #333;
  margin-bottom: 5px;
}
.contact-card .cc-contacts .ci svg {
  width: 14px; height: 14px; fill: #555; flex-shrink: 0;
}
.contact-card .cc-contacts .ci a { color: #333; }
.contact-card .cc-contacts .ci a:hover { text-decoration: underline; }

/* FORM */
.cf input[type="text"],
.cf input[type="email"],
.cf input[type="tel"],
.cf textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #ccc;
  font-size: 13px;
  margin-bottom: 7px;
  font-family: inherit;
  color: #333;
  outline: none;
}
.cf input:focus, .cf textarea:focus { border-color: #aaa; }
.cf textarea {
  height: 80px;
  resize: vertical;
}
.cf .recaptcha-placeholder {
  border: 1px solid #d3d3d3;
  background: #f9f9f9;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
}
.cf .recaptcha-placeholder .rc-check {
  width: 22px; height: 22px;
  border: 2px solid #ccc;
  background: #fff;
  flex-shrink: 0;
}
.cf .recaptcha-placeholder .rc-logo {
  margin-left: auto;
  font-size: 10px;
  color: #888;
  text-align: center;
  line-height: 1.3;
}
.cf .file-input-row {
  margin-bottom: 7px;
}
.cf .file-input-row input[type="file"] {
  font-size: 12px;
}
.cf .privacy-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  margin-bottom: 12px;
}
.cf .privacy-row a { color: #0073aa; }
.cf .privacy-row a:hover { text-decoration: underline; }
.cf .submit-btn {
  background: #8b1a1a;
  color: #fff;
  border: none;
  padding: 13px 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cf .submit-btn:hover { background: #6b1212; }
.cf .submit-btn svg { width: 14px; height: 14px; fill: #fff; }

/* ABOUT SECTION */
.about-section { padding: 30px 0 10px; }
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}
.about-section p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}

/* SERVICE DETAILS (2 col) */
.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px 0;
}
.sd-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.sd-item h3 a { color: #222; }
.sd-item h3 a:hover { text-decoration: underline; }
.sd-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* WHY CHOOSE US */
.why-section {
  background: #f9f9f9;
  border-left: 4px solid #6b1212;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}
.why-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

/* INLINE PARAGRAPHS */
.inline-para {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin: 12px 0;
}

/* PLANNING SECTION */
.planning-section { padding: 20px 0; }
.planning-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}
.planning-section h2 a { color: #222; }
.planning-section h2 a:hover { text-decoration: underline; }
.planning-section p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}

/* CERTIFICATES */
.certificates-section { padding: 20px 0; }
.certificates-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}
.certificates-section img {
  max-width: 300px;
  height: auto;
  display: block;
}

/* REVIEWS */
.reviews-section { padding: 30px 0; }
.reviews-section .r-title {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Two-column carousel layout */
.reviews-carousel-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: 1px solid #ddd;
}

/* Left: rating summary */
.reviews-summary {
  flex: 0 0 160px;
  padding: 20px 15px;
  border-right: 1px solid #ddd;
  text-align: left;
}
.reviews-summary h3 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}
.reviews-summary .stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.reviews-summary .review-count {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}
.reviews-summary .google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
  font-weight: 600;
}
.reviews-summary .google-badge .g-icon {
  font-size: 18px;
  color: #4285f4;
  font-weight: 700;
}
.reviews-summary .google-badge .g-stars {
  color: #f5a623;
  font-size: 11px;
}

/* Right: sliding reviews */
.reviews-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}
.reviews-track {
  display: flex;
  transition: transform 0.35s ease;
}
.review-card {
  flex: 0 0 100%;
  padding: 20px 22px;
  background: #fff;
  box-sizing: border-box;
}
.review-card .r-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.review-card .r-author {
  font-weight: 700;
  font-size: 14px;
  color: #222;
}
.review-card .r-gplus {
  font-size: 20px;
  color: #dd4b39;
  font-weight: 700;
}
.review-card .r-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.review-card .r-text {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

/* Carousel nav arrows */
.reviews-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  border-top: 1px solid #ddd;
  background: #fff;
}
.reviews-nav button {
  background: #fff;
  border: none;
  border-left: 1px solid #ddd;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 18px;
  color: #555;
  line-height: 1;
}
.reviews-nav button:hover { background: #f5f5f5; color: #222; }

/* CITY CONTACTS GRID */
.city-contacts-section { padding: 25px 0; border-top: 1px solid #e5e5e5; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.city-item {
  border: 1px solid #ddd;
  padding: 18px 20px;
  text-align: center;
  margin: -1px 0 0 -1px;
}
.city-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.city-item a {
  font-size: 13px;
  color: #555;
}
.city-item a:hover { text-decoration: underline; color: #0073aa; }

/* PARTNER LOGOS */
.partner-logos {
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
  background: #fff;
}
.partner-logos .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: nowrap;
}
.partner-logos a img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.partner-logos a:hover img { opacity: 1; }

/* FOOTER */
footer {
  background: #6b1212;
  color: #fff;
  padding: 15px 0;
}
footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
footer a { color: #fff; }
footer a:hover { text-decoration: underline; }
footer .footer-links {
  display: flex;
  gap: 20px;
}

/* DIVIDER */
.section-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

/* UTILITY */
.mt-8 { margin-top: 8px; }

.inline-para {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin: 12px 0;
}

/* RECAPTCHA SVG / LABEL */
.rc-logo-svg {
  display: block;
  margin: 0 auto 2px;
}
.rc-label {
  font-size: 8px;
  color: #555;
  text-align: center;
  line-height: 1.3;
}
