/*
Theme Name: Evolve Property Management
Theme URI: https://squaremediatechnology.com/
Author: Square Media Technology
Author URI: https://squaremediatechnology.com/
Description: Premium minimalist editorial theme built for commercial general contracting, corporate infrastructure portfolios, and high-end enterprise logistics across the Intermountain West.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: evolve-property-management
*/

:root {
    --bg-primary: #ffffff; 
    --bg-secondary: #f4f5f6; /* Premium light grey to distinguish specific sections */
    --bg-card: #ffffff;
    --text-main: #111418;
    --text-muted: #5e6671;
    --accent: #0b0d10;
    --border: #eaebec;
    --font-stack: 'Plus Jakarta Sans', sans-serif;
    --color-mist: #F1F0EB;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-stack);
    color: var(--text-main);
    background-color: var(--bg-primary);
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

.bg-light-grey {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* STICKY HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.logo span, .footer-logo span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 8px;
}

/* Ensure uploaded custom logo scales nicely inside nav limits */
.site-branding img.custom-logo, 
.footer-logo-wrapper img.custom-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--text-muted);
}

.btn-header {
    background: var(--accent);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* HERO SLIDER */
.hero-slider-container {
    position: relative;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
    background: #111;
    margin-top: 90px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.25));
    z-index: 2;
}

.container-hero {
    position: relative;
    z-index: 3;
    color: #ffffff;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.slide-content {
    max-width: 780px;
}

.slide-content h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.slide-content p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 620px;
    margin-bottom: 40px;
}


.partners-inner { text-align: center; }
.partners-inner h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.partners-inner p {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    color: var(--color-slate);
}

.logo-slider {
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.logo-slider::before, .logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    background: linear-gradient(to right, var(--color-mist) 0%, rgba(241, 240, 235, 0) 100%);
    left: 0; top: 0;
}

.logo-slider::after {
    background: linear-gradient(to left, var(--color-mist) 0%, rgba(241, 240, 235, 0) 100%);
    right: 0; top: 0;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scrollLogos 30s linear infinite;
}

.logo-track:hover { animation-play-state: paused; }

.partner-logo {
    width: 250px;
    /* height:200px; */
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-ink);
    /* opacity: 0.4;
    filter: grayscale(100%); */
    transition: var(--transition);
    cursor: default;
    text-align: center;
    display: inline-block;
}
.partner-logo img{
    max-width: 100%;
    background-color: #fff;
    max-height: 100px;
}


.partner-logo:hover {
    opacity: 1;
    /* filter: grayscale(0%);
    color: var(--color-brass); */
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

/* CORPORATE PROFILE (CEO) */
.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.profile-text .tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    border-left: 2px solid var(--text-main);
    padding-left: 10px;
}

.profile-text h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.profile-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.ceo-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COMMERCIAL CAPABILITIES */
.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.capability-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: #111418;
    box-shadow: 0 20px 45px rgba(17, 20, 24, 0.06), 0 0 0 1px #111418;
}

.card-icon-container {
    margin-bottom: 28px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 56px; 
    height: 56px;
}

.capability-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.capability-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* EDITORIAL METRICS SCREENSHOT LAYOUT */
.screenshot-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 48px;
    align-items: start;
    background: var(--bg-card);
    padding: 100px 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    margin: 60px 0 0 0;
}

.screenshot-left h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.screenshot-left h2 em {
    font-style: italic;
    font-weight: 400;
    font-family: serif;
}

.screenshot-left p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-tag {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.screenshot-center-img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.metrics-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.metric-block {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.metric-num {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.metric-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* PARALLAX IMAGERY BREAK SECTION */
.parallax-divider {
  height: 75vh;
    background-image: url(https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 13, 16, 0.65);
    z-index: 1;
}

.parallax-text-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 850px;
    padding: 0 24px;
}

.parallax-text-container h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.parallax-text-container p {
    font-size: 18px;
    color: #e2e8f0;
    font-weight: 400;
}

/* ACCORDION FAQS SYSTEM */
.faq-max {
    max-width: 950px;
    margin: 0 auto;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.accordion-item.open {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-stack);
    letter-spacing: -0.3px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.icon-circle::before, .icon-circle::after {
    content: '';
    position: absolute;
    background-color: var(--text-main);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.icon-circle::before {
    width: 14px;
    height: 2px;
}

.icon-circle::after {
    width: 2px;
    height: 14px;
}

.accordion-item.open .icon-circle {
    background-color: #111418;
    border-color: #111418;
}

.accordion-item.open .icon-circle::before {
    background-color: #ffffff;
    transform: rotate(180deg);
}

.accordion-item.open .icon-circle::after {
    transform: rotate(90deg);
    background-color: transparent;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    padding-right: 60px;
}

.accordion-item.open .accordion-content {
    padding-top: 24px;
}

/* CONTACT & INQUIRY SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-form-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-stack);
    font-size: 14px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--text-main);
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: #222;
}

.contact-link {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--text-muted);
}

/* THREE-COLUMN PREMIUM DARK FOOTER MODULE */
footer {
    background: #0b0d10;
    color: #94a3b8;
    padding: 80px 0 40px 0;
    font-size: 14px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-logo {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-logo span {
    font-size: 11px;
    color: #64748b;
}

.footer-logo-wrapper {
    margin-bottom: 16px;
}


.footer-col p {
    line-height: 1.7;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.6;
}

.footer-contact-list strong {
    color: #ffffff;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}