/* ============================================================
   Common Tools Layout, Form Controls & Utilities CSS
   Scenic IT Solutions Brand Aesthetic
   ============================================================ */

/* Footer Navigation Spacing Fix */
footer .nav {
  width: 100% !important;
  display: block !important;
  padding: 20px 0 15px 0 !important;
  color: #F68B1F !important;
  line-height: 2.5 !important;
  text-align: center !important;
}

footer .nav a {
  font-size: 16px !important;
  text-decoration: none !important;
  margin: 6px 14px !important;
  display: inline-block !important;
  line-height: 1.6 !important;
  color: #ffffff !important;
  transition: color 0.2s ease !important;
}

footer .nav a:hover {
  color: #F68B1F !important;
}

/* Tab Content Visibility */
.seo-tab-content {
  display: none !important;
}

.seo-tab-content.active {
  display: block !important;
  animation: scenicFadeIn 0.3s ease-in-out;
}

@keyframes scenicFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Premium Segmented Navigation Tabs Bar */
.seo-tabs-header {
  display: flex;
  gap: 8px;
  background: #0f0f13;
  border: 1px solid #24242a;
  border-radius: 40px;
  padding: 6px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.seo-tab-btn {
  background: transparent;
  border: none;
  color: #aaaaaa;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seo-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.seo-tab-btn.active {
  background: linear-gradient(90deg, #F68B1F, #0278a8);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(246, 139, 31, 0.35);
}

/* Form Field Groups & Labels */
.seo-field-group {
  margin-bottom: 22px;
}

.seo-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #e2e2e8;
  margin-bottom: 8px;
}

.seo-label span.req {
  color: #F68B1F;
  font-weight: bold;
  margin-left: 3px;
}

/* Form Inputs, Textareas, Select Dropdowns */
.seo-input, .seo-textarea, .seo-select {
  width: 100%;
  background: #0b0b0e;
  border: 2px solid #26262e;
  border-radius: 14px;
  padding: 15px 20px;
  color: #ffffff;
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.seo-input::placeholder, .seo-textarea::placeholder {
  color: #666670;
}

.seo-input:hover, .seo-textarea:hover, .seo-select:hover {
  border-color: #3d3d4a;
}

.seo-input:focus, .seo-textarea:focus, .seo-select:focus {
  border-color: #F68B1F;
  background: #111116;
  box-shadow: 0 0 16px rgba(246, 139, 31, 0.25);
}

.seo-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.seo-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230099E5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
  cursor: pointer;
}

.seo-select option {
  background: #121216;
  color: #ffffff;
  padding: 10px;
}

/* Color Pickers */
.qr-color-input {
  width: 100%;
  height: 48px;
  padding: 4px 8px;
  background: #0b0b0e;
  border: 2px solid #26262e;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s ease;
}

.qr-color-input:hover, .qr-color-input:focus {
  border-color: #F68B1F;
}

/* Grid Columns for Forms */
.seo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 640px) {
  .seo-two-col {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumbs Component */
.scenic-breadcrumb-nav {
  margin-bottom: 25px;
}

.scenic-breadcrumb-list {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #888888;
  list-style: none;
  padding: 0;
  margin: 0;
}

.scenic-breadcrumb-link {
  color: #0099E5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.scenic-breadcrumb-link:hover {
  color: #F68B1F;
}

.scenic-breadcrumb-active {
  color: #F68B1F;
  font-weight: 500;
}

/* Related Services & Internal Links Block */
.scenic-related-section {
  padding: 60px 0;
  background: #08080a;
}

.scenic-related-box {
  background: rgba(15, 15, 18, 0.85);
  border: 1px solid #262626;
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.scenic-related-title {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 500;
}

.scenic-related-title span {
  color: #F68B1F;
}

.scenic-related-desc {
  color: #aaaaaa;
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 850px;
}

.scenic-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.scenic-related-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #333333;
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.scenic-related-card:hover {
  border-color: #0099E5;
  transform: translateY(-3px);
}

.scenic-related-card-title {
  color: #0099E5;
  font-size: 18px;
  margin: 0 0 8px 0;
}

.scenic-related-card-text {
  color: #888888;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.scenic-related-card-link {
  color: #F68B1F;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.scenic-related-card-link:hover {
  color: #0099E5;
}

/* SEO Content & Article Section Styles */
.scenic-seo-content-section {
  padding: 60px 0;
  background: #09090c;
  border-top: 1px solid #1c1c24;
}

.scenic-seo-article {
  background: rgba(15, 15, 18, 0.85);
  border: 1px solid #26262e;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.8;
}

.scenic-seo-article h2 {
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.3;
}

.scenic-seo-article h2 span {
  color: #F68B1F;
}

.scenic-seo-article h3 {
  font-size: 22px;
  color: #0099E5;
  margin: 32px 0 14px 0;
  font-weight: 500;
}

.scenic-seo-article p {
  margin-bottom: 18px;
  color: #bbbbbb;
}

.scenic-seo-article ul, .scenic-seo-article ol {
  margin: 0 0 24px 25px;
  color: #bbbbbb;
}

.scenic-seo-article li {
  margin-bottom: 10px;
}

/* FAQ Accordion Component */
.scenic-faq-wrapper {
  margin-top: 30px;
}

.scenic-faq-item {
  background: #0d0d12;
  border: 1px solid #24242e;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.scenic-faq-item:hover {
  border-color: #F68B1F;
}

.scenic-faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 25px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.scenic-faq-icon {
  font-size: 20px;
  color: #0099E5;
  transition: transform 0.3s ease;
}

.scenic-faq-answer {
  padding: 0 25px 22px 25px;
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

.scenic-faq-item.active .scenic-faq-answer {
  display: block;
}

.scenic-faq-item.active .scenic-faq-icon {
  transform: rotate(180deg);
  color: #F68B1F;
}

/* Tool Search & Filter Utility Classes */
.scenic-search-wrapper {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.scenic-search-box {
  position: relative;
  margin-bottom: 25px;
}

.scenic-search-input {
  width: 100%;
  padding: 18px 25px;
  font-size: 18px;
  border-radius: 40px;
  border: 2px solid #333333;
  background: #0b0b0e;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease;
}

.scenic-search-input:focus {
  border-color: #F68B1F;
}

.scenic-filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tools Hub Cards Grid */
.tools-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.tool-hub-card {
  background: rgba(15, 15, 18, 0.9);
  border: 1px solid #262626;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tool-hub-card:hover {
  border-color: #F68B1F;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(246, 139, 31, 0.15);
}

.tool-hub-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-active {
  background: rgba(246, 139, 31, 0.15);
  color: #F68B1F;
  border: 1px solid #F68B1F;
}

.badge-soon {
  background: rgba(255, 255, 255, 0.08);
  color: #888888;
  border: 1px solid #333333;
}

.tool-hub-icon {
  font-size: 44px;
  margin-bottom: 15px;
}

.tool-hub-title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.tool-hub-desc {
  font-size: 15px;
  color: #aaaaaa;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.tool-hub-footer {
  margin-top: auto;
}

.tool-hub-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #F68B1F, #0278a8);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.tool-hub-btn:hover {
  background: linear-gradient(90deg, #0278a8, #0099E5);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(2, 120, 168, 0.4);
}

.tool-hub-disabled-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #1a1a1f;
  color: #666666;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #282828;
}

.tool-filter-btn {
  background: #121216;
  border: 1px solid #333333;
  color: #aaaaaa;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tool-filter-btn:hover, .tool-filter-btn.active {
  background: #F68B1F;
  border-color: #F68B1F;
  color: #ffffff;
}

/* Utility Flex & Helpers */
.seo-action-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn-small-padding {
  width: auto !important;
  padding: 10px 20px !important;
}

.btn-dark-border {
  border-color: #444444 !important;
}

.seo-sync-banner {
  background: rgba(2, 120, 168, 0.1);
  border: 1px solid rgba(2, 120, 168, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.seo-sync-banner-tw {
  background: rgba(246, 139, 31, 0.1);
  border: 1px solid rgba(246, 139, 31, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.seo-sync-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}

.seo-sync-label-blue { color: #0099E5; }
.seo-sync-label-orange { color: #F68B1F; }

.seo-checkbox-input {
  width: 18px;
  height: 18px;
}

.seo-checkbox-input-blue { accent-color: #0099E5; }
.seo-checkbox-input-orange { accent-color: #F68B1F; }

.seo-summary-header {
  font-size: 13px;
  color: #888888;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.seo-preview-meta {
  font-weight: normal;
  font-size: 11px;
}

.seo-guide-section {
  margin-top: 60px;
  background: rgba(15, 15, 18, 0.85);
  border: 1px solid #262626;
  border-radius: 20px;
  padding: 40px;
}

.seo-guide-title {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
}

.seo-guide-title span {
  color: #F68B1F;
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.6;
}

.seo-guide-card-title {
  color: #0099E5;
  font-size: 18px;
  margin-bottom: 8px;
}

.calc-subtitle-text {
  color: #0099E5;
  font-size: 18px;
  margin-bottom: 40px;
}

.calc-page-total-label {
  font-size: 16px;
  font-weight: 500;
  color: #dddddd;
}

/* Footer Tools Interlinking Directory */
.scenic-footer-tools-directory {
  background: #09090d;
  border-top: 1px solid #1a1a24;
  border-bottom: 1px solid #1a1a24;
  padding: 50px 0 40px 0;
  margin-bottom: 40px;
}

.scenic-tools-dir-header {
  text-align: center;
  margin-bottom: 40px;
}

.scenic-tools-dir-header h3 {
  font-size: 26px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}

.scenic-tools-dir-header h3 .highlight {
  color: #F68B1F;
}

.scenic-tools-dir-header p {
  color: #9999aa;
  font-size: 15px;
  margin: 0;
}

.scenic-tools-dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.scenic-tools-dir-col {
  background: rgba(18, 18, 24, 0.6);
  border: 1px solid #22222e;
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.scenic-tools-dir-col:hover {
  border-color: #0099E5;
  transform: translateY(-2px);
}

.scenic-tools-dir-col h4 {
  font-size: 16px;
  color: #0099E5;
  font-weight: 600;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #2a2a38;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scenic-tools-dir-col h4 .cat-icon {
  font-size: 18px;
}

.scenic-tools-dir-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scenic-tools-dir-col ul li {
  margin-bottom: 9px;
  font-size: 13.5px;
  line-height: 1.4;
}

.scenic-tools-dir-col ul li a {
  color: #bbbbcc;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.scenic-tools-dir-col ul li a:hover {
  color: #F68B1F;
  padding-left: 4px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .scenic-footer-tools-directory {
    padding: 35px 15px 25px 15px;
  }

  .scenic-tools-dir-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

