/* =====================================================
   Apex Office Clean - Main Stylesheet
   Pure CSS3 - No frameworks
   ===================================================== */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #2C3E50;
  background-color: #F8F9FA;
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
}

h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 0.4em;
}

h4 {
  font-size: 1.2em;
  margin-bottom: 0.3em;
}

p {
  margin-bottom: 1em;
  color: #2C3E50;
}

a {
  color: #27AE60;
  text-decoration: none;
}

a:hover {
  color: #1E8449;
}

img {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   Header / Navigation Area
   ===================================================== */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E8E8;
  z-index: 1000;
}

.header-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-apex {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.6em;
  color: #27AE60;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.95em;
  color: #2C3E50;
}

.header-phone {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #27AE60;
}

.header-phone a {
  color: #27AE60;
  text-decoration: none;
}

.header-phone a:hover {
  color: #1E8449;
}

/* nav area */
.nav-bar {
  background-color: #FFFFFF;
  border-top: 1px solid #E5E8E8;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  display: block;
  padding: 12px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links li a:hover {
  color: #27AE60;
  border-bottom-color: #27AE60;
}

.nav-links li a.current {
  color: #27AE60;
  border-bottom-color: #27AE60;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2C3E50;
  margin: 5px 0;
  transition: 0.3s;
}

/* =====================================================
   Main Content Layout
   ===================================================== */
main {
  padding-top: 120px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 60px 0;
}

.section-pad-sm {
  padding: 40px 0;
}

/* =====================================================
   Hero Area - 50/50 Split
   ===================================================== */
.hero-area {
  display: flex;
  min-height: 500px;
  background-color: #FFFFFF;
}

.hero-left {
  flex: 1;
  min-height: 500px;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background-color: #FFFFFF;
}

.hero-right h1 {
  font-size: 2.4em;
  margin-bottom: 20px;
  color: #2C3E50;
  font-weight: 700;
}

.hero-right p {
  font-size: 1.1em;
  color: #7F8C8D;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero-phone {
  font-size: 1.3em;
  font-weight: 600;
  color: #27AE60;
  margin-bottom: 20px;
}

.hero-phone a {
  color: #27AE60;
  text-decoration: none;
}

/* CTA button style */
.click-btn {
  display: inline-block;
  background-color: #27AE60;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.click-btn:hover {
  background-color: #1E8449;
  color: #FFFFFF;
}

.text-link {
  color: #27AE60;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1em;
}

.text-link:hover {
  color: #1E8449;
}

/* =====================================================
   Service Blocks / Cards
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-block {
  background-color: #FFFFFF;
  border: 1px solid #E5E8E8;
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  transition: border-color 0.3s;
}

.service-block:hover {
  border-color: #27AE60;
}

.service-block .icon-wrap {
  margin-bottom: 20px;
}

.service-block .icon-wrap svg {
  width: 48px;
  height: 48px;
}

.service-block h3 {
  font-size: 1.2em;
  margin-bottom: 12px;
}

.service-block p {
  font-size: 0.95em;
  color: #7F8C8D;
  margin-bottom: 15px;
}

.service-block a {
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   Trust Bar
   ===================================================== */
.trust-bar {
  background-color: #27AE60;
  padding: 20px 0;
  text-align: center;
}

.trust-bar p {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* =====================================================
   Content Cards (general purpose)
   ===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.info-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E8E8;
  border-radius: 8px;
  padding: 30px;
}

.info-card h3 {
  margin-bottom: 15px;
}

.info-card ul {
  padding-left: 20px;
  color: #7F8C8D;
}

.info-card ul li {
  margin-bottom: 8px;
}

/* =====================================================
   Pricing Tables
   ===================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E8E8;
  border-radius: 8px;
  padding: 35px;
  text-align: center;
}

.price-card.featured {
  border-color: #27AE60;
  border-width: 2px;
}

.price-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.price-tag {
  font-size: 1.8em;
  font-weight: 700;
  color: #27AE60;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 25px;
}

.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #E5E8E8;
  color: #7F8C8D;
  font-size: 0.95em;
}

.price-note {
  font-size: 0.85em;
  color: #7F8C8D;
  font-style: italic;
  margin-top: 30px;
  text-align: center;
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9em;
  color: #2C3E50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E5E8E8;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  color: #2C3E50;
  background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #27AE60;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-block {
  background-color: #FFFFFF;
  border: 1px solid #E5E8E8;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
}

.contact-info-block h3 {
  margin-bottom: 20px;
  font-size: 1.2em;
}

.contact-info-block p {
  margin-bottom: 12px;
  color: #7F8C8D;
  font-size: 0.95em;
}

.contact-info-block strong {
  color: #2C3E50;
}

/* =====================================================
   Checklist Page
   ===================================================== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.checklist-section {
  background-color: #FFFFFF;
  border: 1px solid #E5E8E8;
  border-radius: 8px;
  padding: 30px;
}

.checklist-section h3 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #27AE60;
}

.checklist-section ul {
  list-style: none;
  padding: 0;
}

.checklist-section ul li {
  padding: 6px 0;
  color: #7F8C8D;
  font-size: 0.95em;
  border-bottom: 1px solid #F8F9FA;
}

.checklist-section ul li:before {
  content: "✓ ";
  color: #27AE60;
  font-weight: bold;
  margin-right: 5px;
}

/* =====================================================
   Footer
   ===================================================== */
.site-foot {
  background-color: #2C3E50;
  color: #BDC3C7;
  padding: 50px 0 0;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p,
.footer-col a {
  color: #BDC3C7;
  font-size: 0.9em;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #BDC3C7;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-logo .logo-apex {
  color: #27AE60;
  font-size: 1.4em;
}

.footer-logo .logo-sub {
  color: #BDC3C7;
  font-size: 0.85em;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #3d566e;
  text-align: center;
}

.footer-bottom p {
  color: #7F8C8D;
  font-size: 0.8em;
  margin: 0;
}

/* =====================================================
   Cookie Banner
   ===================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  z-index: 2000;
  display: none;
}

#cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-inner p {
  color: #BDC3C7;
  margin: 0;
  font-size: 0.9em;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85em;
  cursor: pointer;
  border: none;
}

.cookie-btn.accept {
  background-color: #27AE60;
  color: #FFFFFF;
}

.cookie-btn.accept:hover {
  background-color: #1E8449;
}

.cookie-btn.decline {
  background-color: transparent;
  color: #BDC3C7;
  border: 1px solid #BDC3C7;
}

.cookie-btn.decline:hover {
  background-color: #BDC3C7;
  color: #2C3E50;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-center {
  text-align: center !important;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.text-green {
  color: #27AE60;
}

.text-gray {
  color: #7F8C8D;
}

.bg-white {
  background-color: #FFFFFF;
}

.border-top {
  border-top: 1px solid #E5E8E8;
}

.border-bottom {
  border-bottom: 1px solid #E5E8E8;
}

/* =====================================================
   Thanks Page
   ===================================================== */
.thanks-box {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-box h1 {
  margin-bottom: 20px;
}

.thanks-box p {
  font-size: 1.1em;
  color: #7F8C8D;
}

/* =====================================================
   Responsive - Tablet
   ===================================================== */
@media (max-width: 900px) {
  .hero-area {
    flex-direction: column;
  }

  .hero-left {
    min-height: 300px;
  }

  .hero-right {
    padding: 40px 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   Responsive - Mobile
   ===================================================== */
@media (max-width: 600px) {
  .header-top {
    flex-wrap: wrap;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    padding: 12px 0;
    border-bottom: 1px solid #E5E8E8;
  }

  .hero-right h1 {
    font-size: 1.8em;
  }

  .hero-right {
    padding: 30px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  main {
    padding-top: 80px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }
}
