/*
Theme Name: Brandsmith Child
Description: This is a child theme for Brandsmith Theme
Author: Uniweb
Template: flatsome
Version: 3.0
*/

  :root {
    --blue-dark: #74A5BE;
    --gold: #E25441;
    --gold-light: #2cbad3;
    --gold-dark: #1c84b4;
    --ink: #0D0F12;
    --ink-soft: #1A1D24;
    --ink-mid: #555;
    --cream: #FAF7F0;
    --cream-dim: #F0EDE4;
    --slate: #8B8E96;
    --white: #FFFFFF;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans) !important;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }


  blockquote, dl, figure, form, ol, p, pre, ul {
    margin-bottom: 0.7em;
}
/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(161, 178, 180, 0.3);
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 8px;
}


/* Hero visual */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .shield-emblem {
    position: relative;
    width: 340px;
    height: 380px;
  }
  .shield-ring {
    position: absolute;
    border: 1px solid #E75F49;
    border-radius: 50%;
    animation: rotate 30s linear infinite;
  }
  .shield-ring:nth-child(1) {
    width: 340px; height: 340px;
    top: 20px; left: 0;
  }
  .shield-ring:nth-child(2) {
    width: 280px; height: 280px;
    top: 50px; left: 30px;
    animation-direction: reverse;
    animation-duration: 25s;
    border-color: #E75F49;
  }
  .shield-ring:nth-child(3) {
    width: 220px; height: 220px;
    top: 80px; left: 60px;
    animation-duration: 20s;
    border-color: #E75F49;
  }
  .shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .shield-icon svg {
    width: 100px;
    height: 120px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(36, 155, 190, 0.25);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);

  }

    .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 0.6rem 0.8rem !important;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: all 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.section-title1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--ink);
}


.stat-card > .col > .col-inner {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    transition: all 0.3s;
}
 
.stat-card  > .col > .col-inner:hover {
    background-color: rgb(255, 255, 255);
    border-color: var(--gold) !important;
     box-shadow: 0 4px 20px rgba(200,165,92,0.08) !important;
}

.stat-number {
   
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.about-visual {
    position: relative;
    background: var(--blue-dark);
    border-radius: 3px;
    padding: 3rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(200,165,92,0.1), transparent 70%);
  }
  .about-quote {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 380px;
  }
  .about-quote blockquote {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .about-quote cite {
    font-style: normal;
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--gold) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
  }
  .about-quote cite span {
    display: block;
    color: var(--slate);
    text-transform: none;
    letter-spacing: normal;
    margin-top: 0.25rem;
    font-size: 0.75rem;
  }

.service-card .col .col-inner {
    background: #fbfbfb;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 3px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .service-card .col .col-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .service-card .col .col-inner:hover {
    background: #f1f1f1;
    border-color: rgba(200,165,92,0.2);
    transform: translateY(-4px);
  }
  .service-card .col .col-inner:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .service-icon svg {
    width: 22px; height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }
  .service-card .col-inner h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--gold);
  }
  .service-card  p {
    font-size: 0.9rem !important;
    line-height: 1.5;
    color: var(--ink-mid);
    font-weight: 300;
  }

/* ─── PROCESS ─── */
  
  .process-steps {
    
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .process-steps .col {
    text-align: center;
    position: relative;
  }
   .process-steps .col .step-num {
    width: 64px; height: 64px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--white);
    position: relative;
    z-index: 1;
  }
   .process-steps .col h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
   .process-steps .col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--ink);
    font-weight: 300;
    max-width: 300px;
    margin: 0 auto;
  }

  .cta-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 2.5rem;
  }
  .cta-form h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
 
.page-id-12 .uwf-field label, .page-id-339 .uwf-field label{
	display:none;
}

.uwf-field {
    margin-bottom: -14px;
    background: transparent;
}
  .uwf-field input[type=text], .uwf-field input[type=email],
  .uwf-field textarea {
    width: 100%;
    padding: 5px 10px;
    background:#fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    color: #1d2327;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
  }
  .uwf-field input::placeholder,
  .uwf-field textarea::placeholder {
    color: var(--slate);
  }
  .uwf-field input:focus,
  .uwf-field textarea:focus {
    border-color: var(--gold);
  }
  .uwf-field textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


  * ─── BRANDOMETER CTA ─── */
  .brandometer {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
  }
  .brandometer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,165,92,0.08), transparent 70%);
  }
  .brandometer-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
  }
  .brandometer-icon {
    width: 72px; height: 72px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 3s ease infinite;
  }
  .brandometer-icon svg {
    width: 32px; height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }
  .brandometer h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .brandometer h2 em {
    font-style: italic;
    color: var(--gold);
  }
  .brandometer p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,165,92,0.2); }
    50% { box-shadow: 0 0 0 15px rgba(200,165,92,0); }
  }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }



  /* ============= Footer ============ */

  #footer p,  #footer ul {
    font-size: 0.92em !important;
}

  .absolute-footer .container {
        border-top: 1px solid rgba(252, 252, 252, 0.151);
    padding-top: 20px;
}

 .absolute-footer{
    font-size: 0.88rem;
    color: var(--white) !important;
    font-weight: 300;
}

.footer-secondary {
    padding: 0;
    
}

.footer-secondary .footer-text a{
  font-size: 0.88rem !important;
  color: var(--white) !important;
}



/* .box-text  h5 {
    overflow-wrap: normal;
    white-space: nowrap;
    overflow-x: clip;
}
 */

/*ACCORDIAN*/
/* Change the Flatsome default accordion Arrow Icon to a + symbol*/
.accordion-title.active{background-color:#97B1AD !important;color:white!important}
.accordion-inner{background-color:#eeeeee!important}
.accordion-title{font-size:100%}
.accordion-inner{padding:10px;font-size:.85em}
.accordion .toggle{top:3px!important;transform-origin: 50% 50%!important;}
.accordion .active .toggle{top:3px!important;}
.accordion-item {margin-bottom: 8px;}
.accordion .icon-angle-down:before{content:"+";}
.accordion-title.plain {
    background-color:#222;
    color:#fff;
}
.accordion .toggle i {
    color: white;
}
.accordion .toggle i:before {
    color: white;
font-weight:900!important;
}
.active>.toggle {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}


/*MOBILE SIDEBAR MENU ACCORDION*/
.nav-sidebar .icon-angle-down:before {
    content: "+"


}

.nav-column>li>a, .nav-dropdown>li>a, .nav-vertical-fly-out>li>a, .nav>li>a {
    color: #444;
    transition: all .2s;
}
.dot-protect {
    background: #97B1AD !important;
}
.dot-defend {
    background: #E35542 !important;
}
.dot-grow {
    background: #333333 !important;
}

h5.post-title.is-larger {
    text-transform: uppercase !important;
}
h5.post-title.is-large {
    text-transform: uppercase;
}