/* === Base Layout === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f8f8f8;
  color: #111;
}
a {
  text-decoration: none;
  color: inherit;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* === Header === */
.site-header {
  background: #252526;
  color: #fff;
  padding: 1rem;
  position: relative;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo a {
  font-size: 1.5rem;
  color: #fff;
}

.site-logo img {
  height:65px; 
  width:auto; 
  display:block;
}

@media (max-width: 800px) {

  .site-logo img {
  height:50px; 
  }

}

/* === Desktop Nav === */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}


.desktop-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  line-height: 1;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #fff;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: #f0f0f0;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Desktop Dropdown */
.desktop-nav .has-dropdown {
  position: relative;
}

.desktop-nav .has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: #1a2238; 
  color: #fff;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 999;
  border-radius: 4px;
}

.desktop-nav .has-dropdown:hover .dropdown {
  display: block;
}

.desktop-nav .has-dropdown .dropdown li {
  padding: 0;
  margin: 0;
}

.desktop-nav .has-dropdown .dropdown li a {
  color: #fff;
  font-weight: 500;
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.desktop-nav .has-dropdown .dropdown li a:hover {
  background: #2a2f4a; /* subtle hover shade */
  color: #fff;
}

.desktop-nav .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.desktop-nav .has-dropdown:hover > a i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.header-phone {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
}

.header-phone a {
  color: #1a2238;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

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

.header-phone i {
  font-size: 1rem;
  color: #1a2238;
}

/* === Mobile Nav (Custom Toggle System) === */
.mobile-nav {
  display: none;
}

#menuToggle {
  display: none;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  #menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
  }

  #menuToggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    transform-origin: 5px 0px;
    transition: transform 0.5s ease, opacity 0.5s ease, background 0.5s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span {
    transform: rotate(45deg) translate(-2px, -1px);
    background: #36383F;
  }

  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100vh;
    margin: 0;
    padding: 80px 0 0 0;
    background: #f5f6fa;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1;
    overflow-y: auto;
  }

  #menuToggle input:checked ~ #menu {
    transform: translateX(0);
  }

  .mobile-menu-header {
    text-align: center;
    background: transparent;
    position: relative;
    top: 0;
    width: 100%;
  }

  .mobile-menu-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
    display: inline-block;
  }

  #menu ul {
    padding: 20px 0 10px;
    margin: 0;
  }

  #menu li {
    list-style: none;
    padding: 14px 20px;
    border-bottom: 1px solid #ccc;
  }

  #menu li:first-child {
    border-top: 1px solid #ccc;
  }

  #menu li:last-child {
    border-bottom: 1px solid #ccc;
  }

  #menu a {
    display: block;
    width: 100%;
    color: #1E1E23;
    font-weight: 500;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
  }

  #menu a:hover {
    opacity: 0.6;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-call-link {
    padding: 10px 20px;
    text-align: center;
  }

  .mobile-call-link a {
    color: #1a1a1a;
    padding: 10px 0;
    border: 1px solid black;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    text-decoration: none;
  }

  /* Mobile Dropdown (minimal: smaller + less padding + no borders) */
  .mobile-nav .has-submenu > ul {
    display: none;
  }
 
    #menu .has-submenu > ul {
        padding: 0;
        margin: 10px 0 0;
    }

  .mobile-nav .has-submenu.active > ul {
    display: block;
  }

  #menu .has-submenu ul li {
    border: 0;
    padding: 2px 10px;
  }

  #menu .has-submenu ul a {
    font-size: 1rem;
    padding: 2px 0;
  }

  .mobile-nav .has-submenu i {
    transition: transform 0.3s ease;
    float: right;
  }

  .mobile-nav .has-submenu.active > a i {
    transform: rotate(180deg);
  }
}


/* == Front Page == */

/* Hero Section */

.hero {
  background: #252526;
  color: #fff;
  padding: 2rem 1rem 4rem;
}

.hero-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
 max-width: 50%;
 text-align: left;
}

.hero .page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #eaeaea;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #eaeaea;
}

.hero-form {
 width: 400px;
}

/* Responsive */
@media (max-width: 900px) {

  .hero-text {
    max-width: 95%;
    margin: 0 auto;
  }

  .hero .page-title {
    font-size: 2rem;
  }

  .hero-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

}

.hero-benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-benefits-list i {
  color: 	#569cd6; /* checkmark color */
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-benefits-list li:hover i {
  transform: scale(1.1);
  color: #4ec9b0; /* hover effect */
}

.hero-benefits-list p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #eaeaea;
}

.hero-benefits-list strong {
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
  display: inline;
}


/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-benefits {
    text-align: left;
    margin-top: 1.25rem;
    padding-left: 0;
  }

  .hero-benefits li {
    text-align: left;
  }
}


/* Form */

.sa-hero-form { 
  flex: 1; 
  max-width: 425px;
  min-width: 350px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (max-width: 450px) {
  .sa-hero-form {
    width: 100%;
    min-width: 350px;
  }
}

@media (max-width: 350px) {
  .sa-hero-form {
    min-width: 250px;
  }
}

.sa-form-box {
  background: #f8f8f8;
  color: #1a2238;
  padding: 1.5rem 2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sa-form-box h2 {
  text-align: center;
  font-size: 1.75rem;
  margin: .5rem 1rem 1.5rem;
  color: #1a2238;
}

/* Hide labels since placeholders are used */
.sa-form-box label {
  display: none;
}

.sa-input-icon {
  position: relative;
  margin-top: 1rem;
}

.sa-input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}

.sa-form-box input,
.sa-form-box textarea {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  color: #1a2238;
  box-sizing: border-box;
}

.sa-form-box input:focus,
.sa-form-box textarea:focus {
  border-color: #1a2238;
  outline: none;
}

.sa-form-button-wrapper { 
  text-align: center; 
}

.sa-form-box button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #252526;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sa-form-box button:hover { 
  background: #569cd6; 
}

.sa-success-message {
  border-radius: 6px;
  font-weight: 600;
}

/* Service Section */

.services-section {
  padding: 3rem 1rem 2rem;
}

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

.services-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-card {
  width: 50%;
  padding: 1.25rem;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Force 4 columns on desktop */
@media (min-width: 1024px) {
  .service-card {
    width: 25%;
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 2.5rem;
  color: #252526;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: #252526;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #252526;
}

@media (max-width: 768px) {
  .services-section {
    padding: 2rem 1rem;
  }

  .service-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 1rem 0.5rem;
  }

  .service-card {
    padding: .5rem;
  }
}

.service-card-link { display:block; }
.service-card-link:hover { cursor:pointer; }



/* === Tab Section === */
.site-types {
  background: #f9fafb;
  padding: 3rem 1rem;
  color: #1a2238;
}

.site-types-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1.125rem;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  color: #4a4a4a;
}

/* === Tab Buttons (Browser Style) === */
.tabs {
  text-align: left;
}

.tab-buttons {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}

.tab-button {
  background-color: #f1f5f9;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #1a2238;
  transition: background-color 0.2s ease;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin-right: 0.25rem;
  position: relative;
  top: 2px;
}

.tab-button:hover {
  background-color: #e2e8f0;
}

.tab-button.active {
  background-color: #ffffff;
  border-color: #e0e0e0 #e0e0e0 #ffffff;
  z-index: 2;
}

/* === Visual Polish for First/Last Tabs === */
.tab-button:first-child {
  border-top-left-radius: 8px;
}

.tab-button:last-child {
  border-top-right-radius: 8px;
}

/* === Tab Content === */
.tab-content {
  display: none;
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  max-width: 100%;
  margin: 0 auto;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tab-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tab-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.tab-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #1a2238;
  line-height: 1.6;
}

.tab-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #4ade80;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.15rem;
}

@media (max-width: 600px) {
  .tab-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }
}


/* === Page == */

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
}

.page-content {
  line-height: 1.7;
  font-size: 1.1rem;
  color: #333;
}

.page-content h2,
.page-content h3 {
  margin-top: 2rem;
  font-weight: 600;
  color: #1a1a1a;
}

.page-content p {
  margin-bottom: 1.2rem;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}


/* === Contact Page === */

.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form-wrapper {
  width: 55%;
}

.contact-info-wrapper {
  width: 40%;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.form-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.custom-contact-form {
  max-width: 100%;
  box-sizing: border-box;
}

.custom-contact-form .form-group {
  margin-bottom: 1rem;
}

.custom-contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.custom-contact-form .form-row {
  display: flex;
  column-gap: 1.25rem;
}

.custom-contact-form .form-name .form-group {
  flex: 1 1 50%;
}

.custom-contact-form .btn {
  display: inline-block;
  background: #1a2238;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-item i {
  color: #1a2238;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-info-item a {
  text-decoration: none;
  color: inherit;
}

.map-container {
  margin-top: 1rem;
  border-radius: 4px;
  overflow: hidden;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    margin-top: 1rem;
    width: 100%;
  }

  .custom-contact-form .form-row {
    flex-direction: column;
    row-gap: 1rem;
  }
}


/* === SEO Pricing Page (FULL BLOCK) === */
.pricing-section {
  background: #f9fafb;
  padding: 3rem 0;
}

/* Grid on desktop */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;

  /* prevents any “visual collision” with content below */
  margin-bottom: 2.5rem;
}

/* Cards */
.pricing-card {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  position: relative;

  display: flex;
  flex-direction: column;
  height: 100%;

  /* KILL any old transforms causing overlap */
  transform: none !important;
}

.pricing-top h3 {
  margin: 0 0 .5rem;
  font-size: 1.4rem;
  color: #252526;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #252526;
  margin-bottom: .5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin-left: .25rem;
}

.pricing-tagline {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.6;
}

/* List */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.pricing-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .5rem 0;
  color: #1a2238;
  line-height: 1.5;
}

.pricing-list i {
  color: #4ade80;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* CTA pinned to bottom */
.pricing-cta {
  margin-top: auto;
  padding-top: 1.25rem;
  text-align: center;
}

.pricing-btn {
  box-sizing: border-box;
  display: inline-block;
  background: #252526;
  color: #fff;
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;

  min-width: 220px;
  text-align: center;
}

.pricing-btn:hover {
  background: #569cd6;
  transform: translateY(-1px);
}

.pricing-btn-outline {
  background: transparent;
  border: 2px solid #252526;
  color: #252526;
}

.pricing-btn-outline:hover {
  background: #252526;
  color: #fff;
}

/* Featured card (no translateY — only border/shadow) */
.pricing-card-featured {
  border: 2px solid #569cd6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  /* extra safety */
  transform: none !important;
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #569cd6;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .35rem .6rem;
  border-radius: 999px;
}

/* === Audit Block === */
.audit-block {
  margin-top: 0; /* spacing handled by pricing-grid margin-bottom */
  position: relative;
  z-index: 1; /* ensures it sits above any shadows visually */
}

.audit-card {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.audit-left {
  flex: 1 1 520px;
}

.audit-right {
  box-sizing: border-box;
  flex: 0 0 260px;
  background: #f8f8f8;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.audit-card h3 {
  margin: 0 0 .75rem;
  color: #252526;
}

.audit-card h3 i {
  color: #569cd6;
  margin-right: .4rem;
}

.pricing-list-compact li {
  padding: .35rem 0;
}

.audit-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #252526;
  margin-bottom: .35rem;
}

.audit-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.audit-note {
  color: #4a4a4a;
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* Smaller / Bigger block */
.custom-block {
  margin-top: 2.5rem;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 2rem 1.5rem;
}

.pricing-disclaimer {
  text-align: center;
  color: #777;
  font-size: .95rem;
  margin: 2rem auto 0;
  max-width: 900px;
}

/* === Mobile Swipe (peek + snap) === */
@media (max-width: 900px) {
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;

    /* peek */
    padding: 0.25rem 0.75rem 1rem;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* makes items equal-height within the row */
    align-items: stretch;

    /* spacing before audit */
    margin-bottom: 2rem;
  }

  .pricing-card,
  .pricing-card-featured {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: start;

    /* force same visual height */
    min-height: 620px;
    height: auto;

    /* ensure consistent box sizing */
    box-sizing: border-box;
  }

  /* Make button consistent + not affect card height weirdly */
  .pricing-btn {
    width: 100%;
    min-width: 0;
  }
}

/* === Footer === */
.site-footer {
  background: #1a2238; /* solid color */
  color: #ccc;
  text-align: left;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 4-column layout (DESKTOP stays the same) */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

/* Base list styles */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

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

/* Contact info icons */
.contact-info li {
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: #66ccff;
  font-size: 1rem;
}

/* Bottom nav section */
.footer-bottom-nav {
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.footer-bottom-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-bottom-nav a {
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom-nav a:hover {
  color: #fff;
}

/* Copyright line */
.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

/* === Responsive Footer Columns === */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* keep desktop/tablet behavior above 768px exactly the same */
.footer-acc-toggle {
  display: none;
}

/* === Mobile Footer Accordion (ONLY on mobile) === */
@media (max-width: 768px) {

  /* reduce top padding in footer on mobile */
  .site-footer {
    padding-top: 0.75rem;
  }

  /* stack columns */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.25rem;
    margin-top: 0;
    padding-top: 0;
  }

  .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.35rem 0;
  }

  /* remove top border from first section */
  .footer-col:first-child {
    border-top: none;
    padding-top: 0;
  }

  /* hide desktop headings on mobile (use button titles instead) */
  .footer-col h4 {
    display: none;
  }

  /* show accordion button on mobile */
  .footer-acc-toggle {
    display: flex;
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700; /* keep titles bold */
    padding: 0.65rem 0;
    margin: 0;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  /* chevron */
  .footer-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 12px;
    flex: 0 0 auto;
  }

  /* smooth panel animation (CSS grid method) */
  .footer-acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
  }

  .footer-acc-panel > ul {
    overflow: hidden;
    margin: 0;
    padding: 0; /* collapsed */
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 200ms ease, transform 200ms ease, padding 200ms ease;
  }

  /* open state */
  .footer-col.is-open .footer-acc-panel {
    grid-template-rows: 1fr;
  }

  .footer-col.is-open .footer-acc-panel > ul {
    opacity: 1;
    transform: translateY(0);
    padding: 0 0 0.6rem; /* open padding */
  }

  .footer-col.is-open .footer-chevron {
    transform: rotate(-135deg);
  }

  /* tighten spacing for links */
  .footer-col ul li {
    margin-bottom: 0.4rem;
  }

  /* help smoothness on mobile */
  .footer-acc-panel,
  .footer-acc-panel > ul {
    will-change: grid-template-rows, opacity, transform;
  }
}

/* Floating Call button */
.floating-call-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: none;
  align-items: center;
  z-index: 1;
}

.floating-call-button {
  background-color: #66ccff;
  color: #fff;
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.floating-call-button:hover {
  background-color: #4da3e1;
}

.floating-call-label {
  margin-left: 12px;
  font-size: 15px;
  background-color: #202527;
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .floating-call-wrapper {
    display: flex;
  }
}
