/* ===================================================================================

* Theme Name: Artima Child
*Theme URI: https://wp.rrdevs.net/artima/
* Author: RRdevs
* Author URI: https://themeforest.net/user/rrdevs
Description: Artima – Modern Architecture & Interior WordPress Theme
* Version: 1.0.0
* Template: artima
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

.main-menu-3 ul li > a {
    padding: 16px 0;
}
.header__logo a img {
    border-radius: 10px;
}

.main-menu ul li.active > a, .main-menu ul li .submenu li.active > a {
    color: #2E7D32 !important;
}
.main-menu nav ul li a:hover, .main-menu ul li:hover > a::after, .main-menu ul li .submenu li:hover > a, .main-menu ul li .submenu li a::before, .main-menu ul li:hover > a {
    color: #2E7D32 !important;
}

.header-3 {
    padding: 0;
    background-color: #FFFFFF;
    z-index: 999;
}

.main-menu-2 nav ul li a, .main-menu-3 nav ul li a {
    color: #000 !important;
}

.offcanvas__area.info-open{background-color: #010003;}



/* ===============================
   INSTANT OFFER FORM – FINAL UI
   =============================== */

.instant-offer-form {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* Form Row */
.instant-offer-form .form-row {
  display: flex;
  gap: 15px;
  padding: 20px;

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

/* Columns */
.instant-offer-form .form-col {
  flex: 1;
}

/* Inputs */
.instant-offer-form input[type="text"],
.instant-offer-form input[type="tel"],
.instant-offer-form input[type="email"] {
  width: 100%;
  height: 52px;
  padding: 0 15px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;

  color: #ffffff;
  font-size: 14px;
}

/* Placeholder */
.instant-offer-form input::placeholder {
  color: rgba(255,255,255,0.65);
}

/* Focus */
.instant-offer-form input:focus {
  outline: none;
  border-color: #F87171;
  box-shadow: 0 0 0 2px rgba(248,113,113,0.2);
}

/* Button Column */
.instant-offer-form .form-btn {
  max-width: 220px;
}

/* CTA Button */
.instant-offer-form .btn-offer {
  width: 100%;
  height: 52px;

  background: #C62828;
  border: none;
  border-radius: 8px;

  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;

  cursor: pointer;
  transition: all 0.25s ease;
}

.instant-offer-form .btn-offer:hover {
  background: #B71C1C;
  transform: translateY(-1px);
}

/* ===== CF7 Validation ===== */
.wpcf7-not-valid {
  border-color: #F87171 !important;
}

.wpcf7-response-output {
  color: #ffffff;
  margin-top: 15px;
}

/* ===============================
   FIX CF7 EXTRA SPACING
   =============================== */

.instant-offer-form p {
  margin: 0 !important;
  padding: 0 !important;
}

.instant-offer-form .wpcf7-form-control-wrap {
  display: block;
  margin: 0 !important;
}

.instant-offer-form input {
  margin-bottom: 0 !important;
}

.instant-offer-form .wpcf7-spinner {
  display: none;
}

/* ===============================
   MOBILE RESPONSIVE
   =============================== */

@media (max-width: 991px) {
  .instant-offer-form .form-row {
    flex-wrap: wrap;
  }

  .instant-offer-form .form-col {
    width: 100%;
  }

  .instant-offer-form .form-btn {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .instant-offer-form .form-row {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .instant-offer-form .form-col {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .instant-offer-form input[type="text"],
  .instant-offer-form input[type="tel"],
  .instant-offer-form input[type="email"] {
    width: 100% !important;
    height: 50px;
    font-size: 14px;
  }

  .instant-offer-form .form-btn {
    width: 100% !important;
    max-width: 100% !important;
  }

  .instant-offer-form .btn-offer {
    width: 100% !important;
    height: 52px;
    font-size: 15px;
  }

  .instant-offer-form p,
  .instant-offer-form .wpcf7-form-control-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
}



/*---------*/



/* Section title with left & right lines */
.cfv-section-title {
  position: relative;
  display: inline-block;
  padding: 0 25px;
  font-weight: 700;
  color: #0a2c4a;
}

/* Left line */
.cfv-section-title::before,
.cfv-section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #d9d9d9;
}

/* Left */
.cfv-section-title::before {
  left: -80px;
}

/* Right */
.cfv-section-title::after {
  right: -80px;
}

/* Responsive */
@media (max-width: 768px) {
  .cfv-section-title::before,
  .cfv-section-title::after {
    width: 30px;
  }

  .cfv-section-title::before {
    left: -45px;
  }

  .cfv-section-title::after {
    right: -45px;
  }
}










/* BUY CARD */
.cfv-buy-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
}

/* Hover effect */
.cfv-buy-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

/* Image */
.cfv-buy-image img {
  border-radius: 8px;
  width: 100%;
}

/* Bottom row layout */
.cfv-buy-card .e-con-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px 0;
}

/* Title */
.cfv-buy-title {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Arrow */
.cfv-buy-arrow {
  color: #4a8f00;
  font-size: 18px;
}

/* Hover arrow animation */
.cfv-buy-card:hover .cfv-buy-arrow {
  transform: translateX(5px);
  transition: 0.3s;
}





.footer-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #e5e7eb; /* soft white for dark footer */
}

.footer-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5040b; /* modern green tick */
  font-weight: 700;
  font-size: 16px;
}


.footer-checklist li:hover {
  color: #ffffff;
}

.footer-checklist li:hover::before {
  color: #7dd87d;
}



@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .header__main {
        padding: 0px 0!important;
    }
    .header__logo {
     margin: 0px 0!important; 
}
    .header-3 .header__logo img {
        max-width: 190px;
    }
}


p{
    color: #333333;
}







/* ============================
   FAQ ACCORDION – DARK STYLE
   ============================ */

/* Accordion wrapper */
.e-n-accordion {
  max-width: 900px;
  margin: 0 auto;
}

/* Each item */
.e-n-accordion-item {
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #0B2A44;
}

/* Remove default marker */
.e-n-accordion-item summary {
  list-style: none;
}
.e-n-accordion-item summary::-webkit-details-marker {
  display: none;
}

/* Title row */
.e-n-accordion-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
}

/* Title text */
.e-n-accordion-item-title-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

/* Active (opened) title color */
.e-n-accordion-item[open] .e-n-accordion-item-title-text {
  color: #2E7D32;
}

/* Icon container */
.e-n-accordion-item-title-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon color */
.e-n-accordion-item-title-icon svg {
  width: 14px;
  height: 14px;
  fill: #000000;
}

/* Hide + / − properly */
.e-n-accordion-item .e-opened {
  display: none;
}
.e-n-accordion-item[open] .e-opened {
  display: block;
}
.e-n-accordion-item[open] .e-closed {
  display: none;
}

/* Content area */
.e-n-accordion-item > div[role="region"] {
  padding: 0 26px 22px;
  border-top: 1px solid rgba(255,255,255,0.4);
}

/* Content text */
.e-n-accordion-item h2 {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  margin: 16px 0 0;
  font-weight: 400;
}

/* ============================
   FAQ ICON ALIGN RIGHT FIX
   ============================ */

/* Make the title row full width */
.e-n-accordion-item-title {
  width: 100%;
  display: flex !important;
  align-items: center;
}

/* Push icon to far right */
.e-n-accordion-item-title-icon {
  margin-left: auto !important;
}

/* Ensure title text does not shrink */
.e-n-accordion-item-title-header {
  flex: 1;
}

/* Prevent text wrapping under icon */
.e-n-accordion-item-title-text {
  display: block;
  padding-right: 15px;
}


/* Remove all inherited padding */
.e-n-accordion-item-title,
.e-n-accordion-item-title-header,
.e-n-accordion-item-title-text {
  padding: 0 !important;
  margin: 0 !important;
}

/* Apply padding ONLY to the clickable summary */
.e-n-accordion-item-title {
  padding: 40px 26px !important; /* desktop exact */
  display: flex !important;
  align-items: center;
}

/* Text spacing from icon */
.e-n-accordion-item-title-text {
  padding-right: 18px !important;
}

/* Icon alignment */
.e-n-accordion-item-title-icon {
  margin-left: auto !important;
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 767px) {

  .e-n-accordion-item-title {
    padding: 18px;
  }

  .e-n-accordion-item-title-text {
    font-size: 16px;
  }

  .e-n-accordion-item h2 {
    font-size: 14px;
  }

  .e-n-accordion-item-title-icon {
    width: 30px;
    height: 30px;
  }
}




/* =========================
   BOTTOM CTA SECTION
   ========================= */
.bottom-cta {
  background: #0E3A5C;
  padding: 40px 20px;

  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}



.bottom-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Left text */
.cta-text h2 {
        font-family: "Oswald", Sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 1px;
}

.cta-text p {
  color: #ccc;
  font-size: 16px;
  margin: 0;
}

/* Button */
.cta-btn {
  background: #ff0000;
  color: #fff;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #cc0000;
  color: #000;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

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

  .cta-text h2 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 16px;
  }
}










/* ===============================
   HERO – FINAL BALANCED VERSION
   =============================== */

.elementor-element-27c6090 {
  position: relative;
  overflow: hidden;
}

/* Smart directional overlay (text protected, cars clear) */
.elementor-element-27c6090::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    100deg,
    rgba(11, 42, 68, 0.94) 0%,   /* strong for text */
    rgba(11, 42, 68, 0.88) 25%,
    rgba(14, 58, 92, 0.62) 45%, /* cars start getting clear */
    rgba(14, 58, 92, 0.40) 60%,
    rgba(14, 58, 92, 0.28) 75%,
    rgba(14, 58, 92, 0.22) 100% /* cars clearly visible */
  );

  z-index: 1;
	pointer-events: none;
}

/* Keep content above overlay */
.elementor-element-27c6090 > * {
  position: relative;
  z-index: 2;
}

/* Enhance car image clarity (natural, not HDR) */
.elementor-element-27c6090 img {
  filter: brightness(1.12) contrast(1.12) saturate(1.08);
  transform: translateY(10px);
}

/* Smooth hero bottom curve (Oak Harbor style) */
.elementor-element-27c6090::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 180px;

  background: radial-gradient(
    120% 100% at 50% 0%,
    transparent 64%,
    #ffffff 65%
  );
pointer-events: none;
  z-index: 3;
}






/* ===============================
   CONTACT US HERO – FINAL STYLE
   =============================== */

.elementor-element-cd80ffe {
  position: relative;
  background: #0B1F33; /* deep navy-black */
  padding: 110px 20px 90px;
  overflow: hidden;
}

/* Optional subtle depth (SAFE – no click blocking) */
.elementor-element-cd80ffe::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(11, 31, 51, 0.95) 0%,
    rgba(11, 31, 51, 0.85) 100%
  );

  pointer-events: none; /* IMPORTANT */
  z-index: 1;
}

/* Keep all content above overlay */
.elementor-element-cd80ffe .e-con-inner {
  position: relative;
  z-index: 2;
}

/* ===============================
   CONTACT HERO TEXT
   =============================== */

.elementor-element-cd80ffe h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.elementor-element-cd80ffe p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* ===============================
   CONTACT FORM POLISH
   =============================== */

.elementor-element-cd80ffe .instant-offer-form .form-row {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

/* Inputs */
.elementor-element-cd80ffe input {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Placeholders */
.elementor-element-cd80ffe input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

/* Button */
.elementor-element-cd80ffe .btn-offer {
  background: #D32F2F;
}

.elementor-element-cd80ffe .btn-offer:hover {
  background: #B71C1C;
}

