/*
Theme Name: SecureIT OC
Theme URI: https://secureitoc.com
Author: SecureIT OC
Author URI: https://secureitoc.com
Description: Professional theme for SecureIT OC — IT Support for Homes & Small Businesses in Orange County, CA.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: secureitoc
Tags: one-column, custom-logo, custom-colors, featured-images
*/

:root {
  --cream: #faf8f4;
  --sand: #f1ede6;
  --linen: #e4dfd6;
  --white: #ffffff;
  --blue: #1a9bbe;
  --blue-deep: #14768f;
  --blue-sky: #7ccce0;
  --blue-light: #e5f4f8;
  --blue-wash: rgba(26,155,190,0.08);
  --gold: #c9922e;
  --gold-light: #f5eddd;
  --dark: #1e2a33;
  --text: #5c5244;
  --text-soft: #8a8074;
  --text-faint: #b5ad9f;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 4px rgba(44,37,25,0.05);
  --shadow-md: 0 4px 20px rgba(26,155,190,0.08);
  --shadow-lg: 0 12px 40px rgba(26,155,190,0.1);
  --radius: 14px;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--sans);background:var(--cream);color:var(--text);line-height:1.7;overflow-x:hidden;-webkit-font-smoothing:antialiased}
::selection{background:var(--blue-light);color:var(--blue-deep)}
img{max-width:100%;height:auto;display:block}

/* NAV */
.site-nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(250,248,244,0.85);backdrop-filter:blur(20px) saturate(1.3);-webkit-backdrop-filter:blur(20px) saturate(1.3);border-bottom:1px solid var(--linen)}
.nav-inner{max-width:1060px;margin:0 auto;height:64px;display:flex;align-items:center;justify-content:space-between;padding:0 1.5rem}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand-icon{width:36px;height:36px;border-radius:9px;background:linear-gradient(145deg,var(--blue),var(--blue-deep));display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(26,155,190,0.2);flex-shrink:0}
.brand-icon svg{width:20px;height:20px}
.brand-text{font-family:var(--sans);font-weight:700;font-size:1.08rem;color:var(--dark);letter-spacing:-0.3px}
.brand-text .accent{color:var(--blue)}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-links a{font-size:.88rem;font-weight:500;color:var(--text-soft);text-decoration:none;transition:color .2s}
.nav-links a:hover{color:var(--blue)}
.nav-cta{background:var(--blue);color:var(--white);padding:8px 20px;border-radius:8px;font-size:.85rem;font-weight:600;text-decoration:none;transition:all .2s}
.nav-cta:hover{background:var(--blue-deep);box-shadow:var(--shadow-md)}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:4px}
.hamburger span{display:block;width:20px;height:2px;background:var(--dark);margin:4px 0;border-radius:2px}

/* HERO */
.hero{padding:9rem 1.5rem 5rem;position:relative;overflow:hidden}
.hero-orb-1{position:absolute;top:-80px;right:-120px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,var(--blue-light) 0%,transparent 70%);opacity:.7;pointer-events:none}
.hero-orb-2{position:absolute;bottom:-120px;left:-80px;width:450px;height:450px;border-radius:50%;background:radial-gradient(circle,var(--gold-light) 0%,transparent 70%);opacity:.5;pointer-events:none}
.hero-wrap{max-width:1060px;margin:0 auto;position:relative;z-index:1;display:grid;grid-template-columns:1.15fr .85fr;gap:4rem;align-items:center}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:.78rem;font-weight:600;color:var(--blue);background:var(--blue-light);padding:5px 14px;border-radius:20px;margin-bottom:1.75rem}
.hero-eyebrow .dot{width:6px;height:6px;background:var(--gold);border-radius:50%;animation:pulse 2.5s ease-in-out infinite;box-shadow:0 0 6px rgba(201,146,46,0.4)}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
.hero h1{font-family:var(--serif);font-weight:700;font-size:clamp(2.6rem,5vw,3.6rem);color:var(--dark);line-height:1.1;letter-spacing:-1px;margin-bottom:1.5rem}
.hero h1 .em{color:var(--blue);font-style:italic;font-weight:500}
.hero-p{font-size:1.08rem;color:var(--text-soft);max-width:480px;margin-bottom:2.5rem;line-height:1.8}
.hero-btns{display:flex;gap:10px;flex-wrap:wrap}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border-radius:10px;font-weight:600;font-size:.95rem;text-decoration:none;border:none;cursor:pointer;font-family:var(--sans);transition:all .25s}
.btn svg{flex-shrink:0}
.btn-blue{background:var(--blue);color:var(--white)}
.btn-blue:hover{background:var(--blue-deep);box-shadow:var(--shadow-lg);transform:translateY(-1px)}
.btn-sand{background:var(--sand);color:var(--dark)}
.btn-sand:hover{background:var(--linen)}
.btn-outline-blue{background:transparent;color:var(--blue);border:1.5px solid var(--blue);padding:10px 22px}
.btn-outline-blue:hover{background:var(--blue-light)}
.btn-white{background:var(--white);color:var(--blue-deep)}
.btn-white:hover{box-shadow:var(--shadow-lg);transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.25)}
.btn-ghost:hover{border-color:var(--white)}

/* INFO TILES */
.hero-right{display:flex;flex-direction:column;gap:10px}
.info-tile{background:var(--white);border:1px solid var(--linen);border-radius:var(--radius);padding:1.4rem 1.6rem;box-shadow:var(--shadow-sm);transition:all .3s}
.info-tile:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.tile-label{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--text-faint);margin-bottom:5px}
.tile-val{font-family:var(--serif);font-size:1.35rem;font-weight:600;color:var(--dark);line-height:1.25}
.tile-val .hl{color:var(--blue)}
.tile-sub{font-size:.82rem;color:var(--text-soft);margin-top:3px}

/* SECTIONS */
section.content-section{padding:5.5rem 1.5rem}
.wrap{max-width:1060px;margin:0 auto}
.tag{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:var(--blue);margin-bottom:.75rem}
.section-h{font-family:var(--serif);font-weight:700;font-size:clamp(1.9rem,3.5vw,2.5rem);color:var(--dark);line-height:1.12;letter-spacing:-.8px;margin-bottom:.75rem}
.section-p{font-size:1.02rem;color:var(--text-soft);max-width:480px;margin-bottom:3.5rem;line-height:1.75}
.divider{border:none;border-top:1px solid var(--linen);margin:0}

/* SERVICES */
.svc-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.svc-card{background:var(--white);border:1px solid var(--linen);border-radius:var(--radius);padding:2rem 1.75rem;box-shadow:var(--shadow-sm);transition:all .3s}
.svc-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.svc-icon{width:44px;height:44px;border-radius:10px;background:var(--blue-light);display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:1.1rem}
.svc-icon.alt{background:var(--gold-light)}
.svc-card h3{font-family:var(--serif);font-size:1.05rem;font-weight:600;color:var(--dark);margin-bottom:.85rem}
.svc-list{list-style:none}
.svc-list li{font-size:.86rem;color:var(--text-soft);padding:4px 0;display:flex;align-items:baseline;gap:8px;line-height:1.5}
.svc-list li::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--blue);flex-shrink:0;margin-top:1px;opacity:.4}

/* NUMBERS BAR */
.numbers-bar{background:linear-gradient(135deg,var(--blue) 0%,var(--blue-deep) 100%);padding:3rem 1.5rem}
.numbers-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.num-big{font-family:var(--serif);font-size:2.2rem;font-weight:700;color:var(--white);line-height:1;margin-bottom:4px}
.num-text{font-size:.8rem;color:var(--blue-sky);line-height:1.35}

/* PLANS */
.plans-bg{background:var(--sand)}
.plans-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;align-items:start}
.plan{background:var(--white);border:1px solid var(--linen);border-radius:var(--radius);padding:2.25rem 2rem;box-shadow:var(--shadow-sm);transition:all .3s;position:relative}
.plan:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.plan.featured{border-color:var(--blue);box-shadow:0 0 0 1px var(--blue),var(--shadow-lg)}
.featured-badge{position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:var(--blue);color:var(--white);font-size:.65rem;font-weight:700;padding:3px 14px;border-radius:20px;letter-spacing:.5px;text-transform:uppercase}
.plan-name{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--blue);margin-bottom:4px}
.plan-audience{font-size:.85rem;color:var(--text-soft);margin-bottom:1.2rem}
.plan-price{font-family:var(--serif);font-size:2.8rem;font-weight:700;color:var(--dark);letter-spacing:-1.5px;line-height:1}
.plan-price span{font-family:var(--sans);font-size:.85rem;font-weight:400;color:var(--text-faint);letter-spacing:0}
.plan-sep{border:none;border-top:1px solid var(--linen);margin:1.4rem 0}
.plan-items{list-style:none;margin-bottom:1.75rem}
.plan-items li{font-size:.87rem;color:var(--text);padding:4px 0;display:flex;align-items:baseline;gap:8px;line-height:1.5}
.plan-items li::before{content:'✓';font-weight:700;font-size:.75rem;color:var(--blue);flex-shrink:0}
.plan .btn{width:100%;justify-content:center;font-size:.9rem}
.plans-note{text-align:center;color:var(--text-soft);font-size:.85rem;margin-top:2rem;max-width:580px;margin-left:auto;margin-right:auto;line-height:1.65;font-style:italic}

/* ONE-TIME WORK CALLOUT */
.onetime-callout{margin-top:2.5rem;background:var(--white);border:2px solid var(--blue);border-radius:var(--radius);padding:2rem 2.5rem;text-align:center;box-shadow:var(--shadow-md);max-width:700px;margin-left:auto;margin-right:auto}
.onetime-callout h3{font-family:var(--serif);font-size:1.2rem;font-weight:700;color:var(--dark);margin-bottom:.5rem}
.onetime-callout p{font-size:.95rem;color:var(--text);margin-bottom:1.25rem;line-height:1.7}
.onetime-rates{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;margin-bottom:1rem}
.rate-chip{background:var(--blue-light);border:1px solid rgba(26,155,190,0.2);padding:8px 16px;border-radius:8px;font-size:.82rem;color:var(--dark);font-weight:600}
.rate-chip span{color:var(--blue);font-weight:700}

/* HOW IT WORKS */
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.step-card{position:relative;padding:2rem 1.75rem;background:var(--white);border:1px solid var(--linen);border-radius:var(--radius);box-shadow:var(--shadow-sm)}
.step-num{font-family:var(--serif);font-size:3rem;font-weight:700;color:var(--blue-light);line-height:1;margin-bottom:.75rem}
.step-card h3{font-family:var(--serif);font-size:1.08rem;font-weight:600;color:var(--dark);margin-bottom:.4rem}
.step-card p{font-size:.88rem;color:var(--text-soft);line-height:1.7}

/* CTA */
.cta-section{background:linear-gradient(160deg,var(--blue-deep) 0%,#0e6e84 60%,#115f70 100%);text-align:center;position:relative;overflow:hidden;padding:5.5rem 1.5rem}
.cta-section::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,.03);pointer-events:none}
.cta-section .tag{color:var(--blue-sky)}
.cta-section .section-h{color:var(--white)}
.cta-section .section-p{color:rgba(255,255,255,.6);margin-left:auto;margin-right:auto;text-align:center}
.cta-phone{font-family:var(--serif);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:700;color:var(--white);text-decoration:none;display:block;margin-bottom:4px;transition:opacity .2s}
.cta-phone:hover{opacity:.85}
.cta-email{font-size:1rem;color:rgba(255,255,255,.55);text-decoration:none;display:block;margin-bottom:2.25rem;transition:color .2s}
.cta-email:hover{color:var(--white)}
.pay-row{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-top:2rem}
.pay-tag{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);padding:5px 14px;border-radius:6px;font-size:.78rem;color:rgba(255,255,255,.5);font-weight:500}

/* FOOTER */
.site-footer{padding:1.5rem;text-align:center;font-size:.78rem;color:var(--text-faint);border-top:1px solid var(--linen)}
.site-footer a{color:var(--blue);text-decoration:none}

/* ANIMATIONS */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}
.reveal.vis{opacity:1;transform:translateY(0)}
.d1{transition-delay:.07s}.d2{transition-delay:.14s}.d3{transition-delay:.21s}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-wrap{grid-template-columns:1fr;gap:2.5rem}
  .svc-row,.plans-grid,.steps-row{grid-template-columns:1fr}
  .numbers-row{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .nav-links{display:none}
  .hamburger{display:block}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:64px;left:0;right:0;background:rgba(250,248,244,.97);padding:1.25rem 1.5rem;border-bottom:1px solid var(--linen);gap:1rem}
  section.content-section{padding:3.5rem 1.25rem}
  .hero{padding:7rem 1.25rem 3rem}
  .plan.featured{order:-1}
  .hero-btns{flex-direction:column}
  .btn{width:100%;justify-content:center}
}

/* ELEMENTOR COMPAT */
.elementor-page .site-nav{position:relative}
.elementor-editor-active .reveal{opacity:1;transform:none}
.wp-block-image img{border-radius:var(--radius)}
.entry-content p{margin-bottom:1rem}
