/*
Theme Name: GeneratePress Child
Theme URI: https://tv-reparatii.ro/
Description: Child Theme pentru GeneratePress
Author: Mozy
Template: generatepress
Version: 1.0
*/

/* ==========================================================================
   Aici vei pune CSS custom
   ========================================================================== */

.ads-landing {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
}

.ads-landing h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
}

.service-intro {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.ads-landing p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.ads-landing h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.benefits {
    list-style: none;
    padding: 0;
}

.benefits li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #111;
    font-weight: bold;
}

.cta-box {
    text-align: center;
    margin: 45px 0;
}

.phone-link {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease;
}

.phone-link:hover {
    background: #000;
}

.contact-form-ads {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-form-ads input,
.contact-form-ads textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form-ads button {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.contact-form-ads button:hover {
    background: #000;
}

@media (max-width: 768px) {
    .ads-landing {
        padding: 25px 16px;
    }
}

.landing-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.landing-title span {
  display: block;
}

@media(max-width: 768px) {
  .landing-title {
    font-size: 24px;
  }
}

.lead-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 28px auto;
  text-align: center;
  color: #2b2b2b;
  font-weight: 400;
}

@media(max-width: 768px) {
  .lead-text {
    font-size: 16px;
  }
}

.section-title {
  text-align: center;
  margin: 60px 0 30px 0;
}

.defects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.defect-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.defect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.defect-card h3 {
  font-size: clamp(16px, 1.2vw, 18px);
  margin-bottom: 10px;
}

.defect-card p {
  font-size: clamp(13px, 1vw, 15px);
  color: #555;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 50px 0 70px 0;
}

.process-step {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.process-step strong {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-step p {
  font-size: 14.5px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Număr stil premium */
.process-step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -14px;
  left: 20px;
  width: 34px;
  height: 34px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.process-steps {
  counter-reset: step;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 35px 0 40px 0;
  flex-wrap: wrap;
}

/* BUTON PRINCIPAL – CALL */
.primary-call {
  background: #111;
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  letter-spacing: 0.3px;
}

.primary-call:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.same-day-badge {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #0a7d54;
}

/* CONFIDENCE INLINE – HARD OVERRIDE */
.ads-landing .confidence-inline {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    white-space: nowrap !important;
    gap: 0 !important;
    margin: 20px 0 30px 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
}

.ads-landing .confidence-inline span {
    display: inline-flex !important;
    align-items: center !important;
}

.ads-landing .confidence-inline span:not(:last-child)::after {
    content: "•";
    margin: 0 12px;
    opacity: 0.5;
}

/* BUTON SECUNDAR – WHATSAPP */
.secondary-whatsapp {
  background: transparent;
  color: #111;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid #111;
  transition: all 0.25s ease;
}

.secondary-whatsapp:hover {
  background: #111;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: 14px;
  }
  .primary-call,
  .secondary-whatsapp {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   ---- Stiluri FAQ Acordeon ---- 
   ========================================================================== */

.faq-accordion {
    max-width: 920px;
    width: 100%;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
    box-sizing: border-box;
}

.faq-item {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box; 
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    list-style: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background: #f7f8f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.faq-question:hover {
    background-color: #efefef;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: #0056b3; 
    transition: transform 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

details[open].faq-item .faq-question {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

details[open].faq-item .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    box-sizing: border-box;
}

.faq-answer p {
    padding: 16px 20px;
    margin: 0;
    color: #575760;
    line-height: 1.6;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease-in-out; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-accordion {
        padding: 0 20px;
    }
    .faq-question {
        font-size: 1rem;
        padding: 14px 16px;
    }
    .faq-answer p {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   GOOGLE REVIEWS STYLE
   ========================================================================== */

.g-rating-score {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.g-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.g-review-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.g-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.g-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.g-avatar {
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.g-user-info {
    display: flex;
    flex-direction: column;
}

.g-name {
    font-weight: 600;
    font-size: 14px;
}

.g-card-stars {
    color: #fbbc04;
    margin-bottom: 8px;
}

.g-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .g-review-card {
        padding: 16px;
    }
}

.mozy-reviews-wrapper {
    margin: 40px 0;
}

.mozy-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.mozy-google-logo {
    height: 30px;
}

.mozy-rating {
    font-size: 18px;
    font-weight: 700;
}

.splide__slide {
    display: flex;
}

.g-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.g-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mozy-google-badge {
    background: #ffffff;
    padding: 18px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease;
}

.mozy-google-badge:hover {
    transform: translateY(-3px);
}

.mozy-badge-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mozy-stars {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 2px;
}

.mozy-score {
    font-weight: 700;
    font-size: 18px;
}

.mozy-score span {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
    display: block;
    margin-top: 3px;
}

.mozy-top-rated-badge {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(30,58,138,0.3);
    animation: mozyPulse 2.5s infinite;
}

.mozy-badge-icon {
    font-size: 16px;
}

@keyframes mozyPulse {
    0% { box-shadow: 0 6px 18px rgba(30,58,138,0.3); }
    50% { box-shadow: 0 8px 26px rgba(30,58,138,0.5); }
    100% { box-shadow: 0 6px 18px rgba(30,58,138,0.3); }
}

/* URGENCY BAR & PRICE SECTION */
.urgent-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #f3f7ff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin: 20px auto;
    max-width: 900px;
}

.price-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
}

.price-info h3 {
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    opacity: 0.7;
}

/* ==========================================================================
   CONFIDENCE STRIP – PREMIUM REFINED
   ========================================================================== */

.confidence-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 30px 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    font-weight: 650;
    font-size: clamp(13px, 1.4vw, 16px);
}

.confidence-strip span {
    display: inline-flex;
    align-items: center;
    color: #0f3d2e;
    animation: confidencePulse 3.4s ease-in-out infinite;
    line-height: 1; 
}

.confidence-strip span:nth-child(1) { animation-delay: 0s; }
.confidence-strip span:nth-child(2) { animation-delay: 0.2s; }
.confidence-strip span:nth-child(3) { animation-delay: 0.4s; }
.confidence-strip span:nth-child(4) { animation-delay: 0.6s; }

.confidence-strip span:not(:last-child)::after {
    content: "•";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 clamp(8px, 1.5vw, 14px);
    color: #145c44;
    opacity: 0.5;
    font-size: 0.9em;
    transform: translateY(-1px);
}

@keyframes confidencePulse {
    0%   { color: #0f3d2e; text-shadow: 0 0 0 rgba(0,0,0,0); font-weight: 650; }
    50%  { color: #1b7a59; text-shadow: 0 0 6px rgba(27,122,89,0.25); font-weight: 700; }
    100% { color: #0f3d2e; text-shadow: 0 0 0 rgba(0,0,0,0); font-weight: 650; }
}

/* SERVICE INTRO – PREMIUM CLEAN */
.service-intro {
    background: #f8fafc;
    padding: 28px 32px;
    border-radius: 14px;
    margin: 35px 0;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}

.service-intro p {
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.service-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 8px 0 12px 0;
}

.service-note {
    font-size: 14px;
    color: #6b7280;
}

/* ==========================================================================
   TRUST BAR – PREMIUM FLUID REFINED
   ========================================================================== */

.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2.5vw, 40px);
  margin: 20px 0 36px 0;
  flex-wrap: nowrap;
  text-align: center;
}

.trust-bar div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 650;
  letter-spacing: 0.3px;
  white-space: nowrap;
  font-size: clamp(14px, 1.8vw, 19px);
}

.trust-bar div::first-letter {
  color: #145c44;
  font-size: clamp(16px, 2vw, 21px);
}

.trust-bar span {
  color: #0f3d2e;
  animation: premiumTextPulse 3.4s ease-in-out infinite;
}

.trust-bar div:nth-child(1) span { animation-delay: 0s; }
.trust-bar div:nth-child(2) span { animation-delay: 0.25s; }
.trust-bar div:nth-child(3) span { animation-delay: 0.5s; }

@keyframes premiumTextPulse {
  0%   { color: #0f3d2e; text-shadow: 0 0 0 rgba(0,0,0,0); font-weight: 650; }
  50%  { color: #1b7a59; text-shadow: 0 0 8px rgba(27,122,89,0.25); font-weight: 700; }
  100% { color: #0f3d2e; text-shadow: 0 0 0 rgba(0,0,0,0); font-weight: 650; }
}

/* ==========================================================================
   COVERAGE & EXPERTISE SECTION (NOI STILURI PREMIUM CARD)
   ========================================================================== */
.service-coverage-area {
    margin: 60px 0 40px 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.coverage-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #f3f4f6;
}

.coverage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.coverage-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #111;
}

.coverage-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.coverage-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.coverage-list p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.coverage-list p strong {
    color: #222;
    font-weight: 600;
}

.seo-text-box {
    background: #f8fafc;
    border-left: 4px solid #111;
    padding: 20px 24px;
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
}

.seo-text-box p {
    margin: 0;
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA BANNER (NOUL STIL PENTRU BUTONUL DE JOS)
   ========================================================================== */
.final-cta-banner {
    background: #111;
    border-radius: 16px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cta-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    line-height: 1.2;
}

.cta-content p {
    margin: 0;
    font-size: 16px;
    color: #a1a1aa;
}

.cta-action {
    flex-shrink: 0;
}

.cta-phone-btn {
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.25);
    background: #f8f8f8;
    color: #000;
}

@media (max-width: 768px) {
    .final-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }
    .cta-content h3 {
        font-size: 22px;
    }
    .cta-action, 
    .cta-phone-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   HEADER BRANDING - LOGO + TITLU + SLOGAN (ELEGANT BUSINESS)
   ========================================================================== */

.site-branding-container a {
    display: flex;
    align-items: center; 
    gap: 16px; 
    text-decoration: none;
    color: #111 !important;
}

.site-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1; 
    justify-content: center;
}

.main-title {
    color: #111 !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800; 
    font-size: 23px;
    letter-spacing: -0.02em; 
    margin-bottom: 0 !important;
}

.site-slogan {
    color: #5f6368; 
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px; 
    letter-spacing: 0.01em;
}

.header-logo-img {
    width: 55px; 
    height: auto;
    border-radius: 4px;
    flex-shrink: 0;
}

.site-branding-container a:hover .main-title {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .site-branding-container a {
        gap: 12px;
        padding-left: 5px;
    }
    .main-title {
        font-size: 19px;
    }
    .site-slogan {
        font-size: 11.5px;
        line-height: 1.2;
    }
    .header-logo-img {
        width: 48px;
    }
}

.site-additional-footer-meta, .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0.01;
    pointer-events: none;
}

div.featured-image.page-header-image.grid-container.grid-parent {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.featured-image img.wp-post-image {
    display: none !important;
}

.same-day-service {
    display: table;
    margin: 14px auto;
    text-align: center;
    background: #e8f7f0;
    color: #0a7d54;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #c9eadb;
}

.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 14px 22px;
    width: fit-content;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.google-logo img {
    height: 26px;
}

.google-stars {
    color: #f4b400;
    letter-spacing: 2px;
    font-size: 16px;
}

.google-rating-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* ==========================================================================
   ELIMINARE FOOTER GENERATEPRESS ȘI SPAȚII ALBE (OVERRIDE FIX)
   ========================================================================== */

.site-footer, 
.site-info {
    display: none !important;
}

.site-content, 
#content, 
.inside-article {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

#adsFooterPermanent {
    margin-bottom: 0 !important;
    border-radius: 8px 8px 0 0;
    margin-top: 20px;
    padding: 20px 20px 80px 20px; /* Padding bottom mărit pt butonul sticky */
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    background: #222; /* Ajustat pe negru pentru noul design HTML */
}

.ads-footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.ads-footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
}

.ads-footer-links a:hover {
    color: #fff;
}

.separate-containers .inside-article {
    padding-bottom: 0 !important;
}

.footer-widgets,
.footer-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ads-landing > *:last-child {
    margin-bottom: 0 !important;
}

.page-id-2 .main-navigation, 
.page-id-2 .menu-toggle {
    display: none !important;
}

.page-id-2 .site-header {
    padding: 10px 0;
}