/*
Theme Name: AppleWood Theme
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */
:root {
    --primary: #29b31d;
    --primary-2: #67cf67;
    --primary-3: #4f2300;
    --primary-4: #4f3600;

    --gray-bg: #0f1115;
    --gray_bg-1: #13151a;
    --gray_bg-2: #16181d;
    --gray_bg-3: #21242c;
    --gray_bg-4: #161a21;

    --gradient-hero: linear-gradient(135deg, hsl(220 17% 7%) 0%, hsl(220 20% 12%) 100%);

    --gray-900: #16181d;

    --gray-700: #232323;
    --gray-500: #444444;
    --gray-400: #7e7e7e;
    --gray-300: #e2e2e2;
    --gray-100: #ebebeb;

    --bgdark: #0e1b0e;
    --bgdark-2: #082708;
    /* --bgdark-3 : #081608; */

    --border-radius: 15px;

    --h1-size-movil: 24px;
    --h1-size-tablet-vert: 30px;
    --h1-size-tablet: 40px;
    --h1-size-laptop: 50px;

    --h2-size-movil: 24px;
    --h2-size-tablet-vert: 30px;
    --h2-size-tablet: 40px;
    --h2-size-laptop: 44px;

    --swiper-theme-color: #ff8b00;
    --swiper-navigation-size: 44px;
    --swiper-navigation-top-offset: 50%;
    --swiper-navigation-sides-offset: 10px;
    --swiper-navigation-color: #ff8b00;
}
html,
body {
    background-color: var(--gray-bg);
    color: var(--gray-100);
}
.bg-gray-100 {
    background-color: var(--gray-100);
}
.bg-gray-300 {
    background-color: var(--gray-300);
}
.bg-dark {
    background-color: var(--bgdark);
}
.bg-dark-2 {
    background-color: var(--bgdark-2);
}
.bg-primary {
    background-color: var(--primary);
}
/* SECTION-CONTENT*/
/* Márgenes para las secciones */
.section-content {
    padding-top: 15px !important; /* Móviles */
    padding-bottom: 15px !important; /* Móviles */
}
/* Gray Backgrouds*/
.gray-bg {
    background-color: var(--gray-bg);
}
.gray_bg-1 {
    background-color: var(--gray_bg-1);
}
.gray_bg-2 {
    background-color: var(--gray_bg-2);
}
.gray_bg-3 {
    background-color: var(--gray_bg-3);
}
.gray_bg-4 {
    background-color: var(--gray_bg-4);
}
.gradient-hero {
    background-color: var(--gradient-hero);
}
@media (min-width: 768px) {
    .section-content {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

@media (min-width: 1024px) {
    .section-content {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
}

@media (min-width: 1440px) {
    .section-content {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* ============================
   VARIABLES DE COLOR
============================ */
:root {
    --gray-bg-1: #13151a;
    --gray-bg-2: #16181d;
    --primary: #29b31d;
}

/* ============================
   SECCIÓN GENERAL
============================ */
/* .services-section {
    background: var(--gray-bg-1);
    padding: 80px 20px;
    color: #ffffff;
} */

/* .services-container {
    max-width: 1200px;
    margin: auto;
} */

/* ============================
   CABECERA
============================ */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: auto;
}

/* ============================
   GRID DE CARDS
============================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ============================
   CARDS
============================ */
.service-card {
    background: var(--gray-bg-2);
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    border-width: 2px;
    transform: translateY(-6px);
}

/* Imagen */
.service-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

/* Icono dentro de la imagen */
.service-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    color: #ffffff;
}

/* ============================
   CONTENIDO DEL CARD
============================ */
.service-content {
    padding: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-text {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Section styling */
/* .service-areas {
    padding: 80px 20px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
} */

/* Container */
.service-areas {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Header */
.service-areas .header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-areas .header p {
    color: #a9acb3;
    max-width: 600px;
    margin: auto;
}

/* Area block */
.area-block {
    margin-top: 50px;
    text-align: left;
}

.area-block h3 {
    font-size: 24px;
    color: #28c76f;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon (you can swap for SVG later) */
.icon {
    font-size: 22px;
}

/* Grid */
.areas-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* Area card */
.area-card {
    background: var(--gray-bg-2);
    border: 1px solid #3b3d44;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    transition: 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}

.area-card:hover {
    border-color: #28c76f;
}

/* Footer message */
.footer-note {
    margin-top: 60px;
    color: #a9acb3;
}

.footer-note a {
    color: #28c76f;
    font-weight: bold;
    text-decoration: none;
}

.footer-note a:hover {
    opacity: 0.8;
}

/* ===========================
   GRID PRINCIPAL
   =========================== */
.features-grid {
    display: grid!important;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: self-start!important;
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center!important;
    }
}

/* ===========================
   TEXT AREA
   =========================== */
.features-text h2 {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
}

.features-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #cfd3d6;
    margin-bottom: 20px;
}

/* ===========================
   FEATURES LIST WITH ICONS
   =========================== */
.features-list {
    display: grid!important;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 576px) {
    .features-list {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-item {
    display: flex!important;
    /* align-items: flex-start!important; */
    flex-direction: row!important;
	flex-wrap: nowrap!important;
	justify-content: flex-start!important;
	align-items: stretch!important;
	align-content: stretch!important;

    gap: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
}

.feature-item p {
    font-size: 14px;
    color: #bfc4c6;
}

/* ICON BOX */
.feature-icon {
    width: 50px!important;
    height: 50px!important;
    background: #00d26a; /* primary */
    border-radius: 12px!important;
    overflow: hidden!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    color: #001b0b;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 255, 120, 0.6);
}

/* Glow effect */
.feature-icon svg {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* ===========================
   METRIC CARDS
   =========================== */
.cards-grid {
    display: grid!important;
    grid-template-columns: 1fr 1fr!important;
    gap: 25px!important;
}

.card-stats {
    padding: 40px 20px!important;
    text-align: center!important;
    border-radius: 20px!important;
    font-weight: 600!important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25)!important;
    /* display: block!important; */
    /* max-height: 150px!important; */
}

/* Numbers */
.card-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* Subtext */
.card-label {
    font-size: 16px;
    opacity: 0.8;
}

/* COLORS (replicando tu imagen exacta) */
.card-green {
    background: linear-gradient(135deg, #00ff7f, #00c45c);
    color: #001b0d;
}

.card-orange {
    background: linear-gradient(135deg, #ffb027, #ff9800);
    color: #332100;
}

.card-gray {
    background: #1f2326;
    color: #e5e5e5;
}

.card-primary {
    background: #00d26a;
    color: #001b0d;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 480px) {
    .card-number {
        font-size: 38px;
    }
}

/* ===========================
   SECTION BASE
   =========================== */
.cta-section {
    position: relative;
    padding: 100px 20px;
    background: #0e1114;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

/* ===========================
   BACKGROUND BLURS
   =========================== */
.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
}

.blur-green {
    width: 280px;
    height: 280px;
    background: #00d26a;
    top: 60px;
    left: 60px;
}

.blur-orange {
    width: 420px;
    height: 420px;
    background: #ffb027;
    bottom: 60px;
    right: 60px;
}

/* ===========================
   CONTENT
   =========================== */
.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}
@media (min-width: 576px){
    .cta-content h2 {
        font-size: 30px;
    }
}
@media (min-width: 1024px){
    .cta-content h2 {
        font-size: 36px;
    }
}
@media (min-width: 1200px){
    .cta-content h2 {
        font-size: 48px;
    }
}

.subtitle {
    font-size: 20px;
    color: #cfd3d6;
    margin-bottom: 40px;
}

/* ===========================
   BUTTONS WRAPPER
   =========================== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ===========================
   BUTTON: YELLOW
   =========================== */
.btn-yellow {
    background: linear-gradient(90deg, #ffb027, #ff9800);
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1400;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 190, 60, 0.6);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-yellow .icon-arrow {
    transition: transform 0.2s;
}

.btn-yellow:hover .icon-arrow {
    transform: translateX(5px);
}

/* ===========================
   BUTTON: GREEN
   =========================== */
.btn-green {
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid #00d26a;
    border-radius: 10px;
    color: #00d26a;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-green:hover {
    background: #00d26a;
    color: #001b0b;
}

/* ===========================
   OFFER TEXT
   =========================== */
.offer {
    margin-top: 30px;
    color: #c7cbce;
    font-size: 16px;
}

.bold {
    font-weight: 700;
    color: #ffffff;
}

/* ======================
   FOOTER BASE
====================== */
.footer {
    background: #111418;
    border-top: 1px solid #2a2f33;
    color: #c5c9cc;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ======================
   GRID
====================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-area ul {
    padding-left: 0 !important;
}
/* ======================
   LOGO + TEXT
====================== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.logo-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8f93;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
}

/* ======================
   TITLES
====================== */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

/* ======================
   LISTS
====================== */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
    font-size: 14px !important;
}

.footer-list a {
    text-decoration: none;
    color: #c5c9cc;
    transition: 0.2s;
}

.footer-list a:hover {
    color: #00d26a;
}

/* ======================
   CONTACT
====================== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    font-size: 14px !important;
    line-height: 25px !important;
    margin-bottom: 8px;
    /* color: #718096; */
}
.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    color: #c5c9cc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-contact-item:hover {
    color: #00d26a;
}

.footer-location {
    display: flex;
    font-size: 14px;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    color: #00d26a;
}

/* ======================
   SOCIAL ICONS
====================== */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: #1a1f23;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c5c9cc;
    transition: 0.25s;
}

.social-btn:hover {
    background: #00d26a;
    color: #001b0b;
}

/* ======================
   BOTTOM TEXT
====================== */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2a2f33;
}

.footer-bottom p {
    font-size: 13px;
    color: #8a8f93;
}

/* Srevoces page*/

/* GENERAL SECTIONS */

/* Reverse layout for alternating sections */
.svc-card.reverse {
    direction: rtl;
}
.svc-card.reverse .svc-content {
    direction: ltr;
}

/* IMAGE */
.svc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------
   BASE (MOBILE FIRST)
-------------------------------------------------- */

.svc-section {
    padding: 20px 0 !important;
    display: flex;
    justify-content: center;
}

.svc-card {
    width: 100%;
    background: #1d1f23;
    color: #fff;
    border: 1px solid #333;
    border-radius: 12px !important;
    overflow: hidden !important;

    /* En móviles: 1 columna */
    display: block;
}
.svc-card:hover {
    border: 1px solid var(--primary);
}
/* TEXT */
.svc-content {
    padding: 0px 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-content h2 {
    font-size: 24px; /* reducido para móviles */
    font-weight: 800;
    margin-bottom: 12px!important;
    margin-top: 12px!important;
}

.svc-content p {
    font-size: 15px; /* reducido */
    color: #c9c9c9;
    margin-bottom: 20px;
}

/* LIST WITH SVG ICONS */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.svc-list li {
    font-size: 14px; /* reducido */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --------------------------------------------------
   TABLET (≥768px)
-------------------------------------------------- */

@media (min-width: 768px) {
    .svc-section {
        padding: 20px 0 !important;
    }
    .svc-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .svc-content {
        padding: 0px 30px !important;
    }

    .svc-content h2 {
        font-size: 28px;
    }

    .svc-content p {
        font-size: 16px;
    }

    .svc-list li {
        font-size: 15px;
    }
}

/* --------------------------------------------------
   DESKTOP (≥1024px)
   — Aquí uso los tamaños EXACTOS que enviaste —
-------------------------------------------------- */

@media (min-width: 1024px) {
    .svc-section {
        padding: 30px 0 !important;
    }

    .svc-card {
        max-width: 1100px;
        grid-template-columns: 1fr 1fr;
    }

    .svc-content {
        padding: 0px 40px !important;
    }

    .svc-content h2 {
        font-size: 34px; /* tamaño original */
    }

    .svc-content p {
        font-size: 18px; /* tamaño original */
    }

    .svc-list li {
        font-size: 16px; /* tamaño original */
    }
}

/* LIST WITH SVG ICONS */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.svc-list li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-check {
    color: #f6b73c;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--primary);
    border-radius: 9999px;
    padding: 2px;
}

/* CTA BUTTON WITH SHINE EFFECT */
.cta-btn {
    position: relative;
    display: inline-block;
    background: #f6b73c;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Shine */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 60px;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 200px;
}

.cta-btn:hover {
    background: #ffcc4d;
    box-shadow: 0 0 12px #f6b73c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .svc-card,
    .svc-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .svc-image {
        height: 260px;
    }
}

/* HERO SECTION */
.hero-services {
    position: relative;
    width: 100%;
    height: 450px;
    /* background-image: url("/src/assets/services-hero.jpg");  */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
    overflow: hidden;
}

/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
} */

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    color: #d1d1d1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-services {
        height: 360px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }
}

.flex-col {
    display: flex;
    flex-direction: column;
}

/* PREVIOUS WORK*/
.prev-work .elementor-shortcode {
    border-radius: 15px;
    overflow: hidden !important;
}

/* ---------------------------
   BASE (Mobile First)
---------------------------- */

.cnt-section {
    padding: 40px 20px;
    background: #0f1114;
    color: #fff;
}

.cnt-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.cnt-form-card {
    background: #1d1f23;
    border: 1px solid #333;
    border-radius: 12px !important;
    overflow: hidden;
    padding: 15px 15px!important;
}

@media (min-width: 768px) {
    .cnt-form-card {
        padding: 20px 30px!important;
    }
}

@media (min-width: 1024px) {
    .cnt-form-card {
        padding: 20px 30px!important;
    }
}

/* ================================
   FORM BASE
================================ */
.cnt-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
}

/* ================================
   FIELD WRAPPER
================================ */
.cnt-field {
  display: flex;
  flex-direction: column;
}

.cnt-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e5e5e5;
}

/* ================================
   INPUTS & TEXTAREA
================================ */
.cnt-field input,
.cnt-field textarea,
.wpcf7-form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #303030;
  background: #121416!important;
  color: #ffffff;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}

.cnt-field input::placeholder,
.cnt-field textarea::placeholder {
  color: #777;
}

/* Focus */
.cnt-field input:focus,
.cnt-field textarea:focus {
  outline: none;
  border-color: #4ade80; /* verde */
  background: #181a1d;
}

/* ================================
   BUTTON
================================ */
.cnt-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background .2s ease, transform .2s ease;
}

/* Primary button */
.cnt-btn-primary {
  background: #22c55e; /* Verde */
  color: #fff;
}

/* Hover */
.cnt-btn-primary:hover {
  background: #1faa53;
  transform: translateY(-1px);
}

/* Click */
.cnt-btn-primary:active {
  transform: translateY(0);
}

/* ================================
   CONTACT FORM 7 DEFAULT FIXES
   (para evitar estilos del tema)
================================ */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 14px;
  margin: 15px 0 0;
}

/* Error message */
.wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 13px;
  margin-top: 4px;
}

/* Remove CF7 default border */
.wpcf7-form-control-wrap {
  display: block;
}


/* ---------------------------
   CONTACT INFO
---------------------------- */

.cnt-info {
    display: grid;
    gap: 40px;
}

.cnt-info-list {
    display: grid;
    gap: 20px;
}

.cnt-info-item {
    display: flex!important;
	flex-direction: row!important;
	flex-wrap: nowrap!important;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: stretch;
    gap: 16px;
    align-items: flex-start;
}

.cnt-icon-box {
    background: rgba(36, 198, 89, 0.1);
    border-radius: 8px!important;
    overflow: hidden!important;
    padding: 12px;
    font-size: 20px;
    width: 50px!important;
    height: 50px!important;
}

.cnt-info-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cnt-info-link {
    color: #b5b5b5;
    transition: 0.2s;
}

.cnt-info-link:hover {
    color: #24c659;
}

.cnt-info-text {
    color: #b5b5b5;
}

/* Quote Box */
.cnt-quote-box {
    background: rgba(36, 198, 89, 0.08);
    border: 1px solid rgba(36, 198, 89, 0.25);
    padding: 25px;
    border-radius: 12px!important;
    overflow: hidden!important;
}

.cnt-quote-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ---------------------------
   TABLET
---------------------------- */

@media (min-width: 768px) {
    .cnt-title {
        font-size: 30px;
    }

    .cnt-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------------------------
   DESKTOP
---------------------------- */

@media (min-width: 1024px) {
    .cnt-title {
        font-size: 34px;
    }

    .cnt-section {
        padding: 60px 20px;
    }
}

.cnt-icon-box svg {
    width: 22px;
    height: 22px;
    /* fill: #24c659; */
    display: block;
}
@media (min-width: 1024px) {
    .cnt-icon-box svg {
        width: 26px;
        height: 26px;
    }
}




/* GRID BASE */

/* Contenedor general del card */
.svc-card-item {
    position: relative!important;
    overflow: hidden!important;
    border-radius: 12px!important;
    cursor: pointer;
    height: 380px!important;
}

/* Imagen como fondo con alto fijo */
.svc-card-image {
    height: 380px!important;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Overlay Full Cover (invisible al inicio) */
.svc-card-overlay {
    position: absolute!important;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);

    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* TAG y título */
.svc-tag {
    display: inline-block;
    /* background: #ffcc00; */
    color: #ffcc00;
    /* padding: 6px 12px;
    border-radius: 20px; */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px!important;
}

.svc-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0!important;
}

/* Hover: imagen hace zoom */
.svc-card-item:hover .svc-card-image {
    transform: scale(1.1);
}

/* Hover: overlay aparece */
.svc-card-item:hover .svc-card-overlay {
    opacity: 1;
    transform: scale(1);
}


#house-washing-card{
    background-image: url("http://localhost/wpapplewood/wp-content/uploads/2025/11/2-house-washing-after.jpg");
}
.no-effect {
    --dummy: 0;
}