/*
 * Bond IT — site.css
 * Site-specific styles for bondit.com.au
 * Links after bas-theme.css — do not modify the shared theme file.
 * Last updated: 2026-04-11
 */

/* ============================================================
   HERO
   ============================================================ */

.hero {
    background: var(--bg-white);
    padding: 36px 20px 56px;
    text-align: center;
    border-bottom: 3px solid var(--btn-primary-bg);
}

.hero img.logo {
    max-width: 425px;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

/* ============================================================
   BUTTONS — override BAS theme sizing for public site
   ============================================================ */

.btn {
    padding: 12px 28px;
    font-size: 0.97rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.1s;
}

.btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--btn-primary-border);
    box-shadow: 0 3px 10px rgba(255,153,0,0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e67e00;
    color: #fff;
    box-shadow: 0 5px 16px rgba(255,153,0,0.42);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--orange-dark);
    border: 2px solid var(--btn-primary-bg);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--btn-primary-bg);
    color: #fff;
    box-shadow: 0 3px 10px rgba(255,153,0,0.3);
}

/* ============================================================
   NAV
   ============================================================ */

.site-nav {
    background: var(--bg-white);
    border-bottom: 3px solid var(--btn-primary-bg);
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.site-nav .nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: clamp(44px, 6vw, 64px);
}

.site-nav .nav-links-row {
    display: flex;
    align-items: center;
}

.site-nav .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav-links a {
    display: block;
    padding: 0 18px;
    line-height: clamp(44px, 6vw, 64px);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.15s, background 0.15s;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
    color: var(--orange-dark);
    background: var(--bg-hover);
    text-decoration: none;
}

.site-nav .nav-logo-row {
    display: flex;
    align-items: center;
    padding-left: 32px;
}

.site-nav .nav-logo img {
    height: clamp(24px, 3.5vw, 42px);
    width: auto;
    display: block;
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */

.section {
    padding: 56px 20px;
}

.section.alt {
    background: var(--bg-light);
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section h2 {
    color: var(--orange-dark);
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 780px;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ============================================================
   PAIN GRID — "Sound familiar?" cards
   ============================================================ */

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin: 32px 0 24px;
}

.pain-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--btn-primary-bg);
    border-radius: var(--radius-lg);
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.pain-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pain-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

img.pain-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

.section-cta-note {
    margin-top: 16px;
    font-size: 1.02rem;
    color: var(--text-secondary);
    padding: 16px 20px;
    background: var(--bg-hover);
    border-left: 4px solid var(--btn-primary-bg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ============================================================
   PROCESS STEPS — "How Bond IT works"
   ============================================================ */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.process-step:hover {
    box-shadow: var(--shadow-md);
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--btn-primary-bg);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,153,0,0.35);
}

.step-body h3 {
    margin: 0 0 8px;
    color: var(--text-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.step-body p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.97rem;
}

/* ============================================================
   AI SECTION — "Why now is the right time"
   ============================================================ */

.ai-section {
    display: flex;
    align-items: center;
    gap: 56px;
}

.ai-text {
    flex: 1;
}

.ai-text h2 {
    margin-bottom: 16px;
}

.ai-text p {
    line-height: 1.7;
    margin-bottom: 14px;
}

.ai-text p:last-of-type {
    margin-bottom: 24px;
}

.ai-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--btn-primary-bg) 0%, #e67e00 100%);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 16px;
    box-shadow: 0 6px 24px rgba(255,153,0,0.4);
}

.ai-badge-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 8px;
}

.ai-badge-label {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================================
   SERVICE CARDS — home overview grid
   ============================================================ */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card h3 {
    color: var(--orange-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SERVICE EXAMPLES GRID — services page
   ============================================================ */

.services-subheading {
    margin: 36px 0 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.service-example {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--btn-primary-bg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 20px 20px 18px 18px;
    transition: box-shadow 0.2s, border-left-color 0.2s;
}

.service-example:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--orange-dark);
}

.service-example h4 {
    margin: 0 0 8px;
    color: var(--orange-dark);
    font-size: 0.97rem;
    font-weight: 700;
}

.service-example p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================================
   AI CALLOUT — services page
   ============================================================ */

.ai-callout {
    background: linear-gradient(135deg, #fff8ee 0%, var(--orange-light) 100%);
    border: 1px solid var(--orange-mid);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    margin-top: 36px;
    position: relative;
    overflow: hidden;
}

.ai-callout::before {
    content: "⚡";
    position: absolute;
    right: 24px;
    top: 12px;
    font-size: 3.5rem;
    opacity: 0.1;
    pointer-events: none;
}

.ai-callout strong {
    display: block;
    color: var(--orange-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.ai-callout p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION — dark strip
   ============================================================ */

.cta-section {
    background: #1a1a1a;
    padding: 56px 20px;
}

.cta-section .section-inner {
    text-align: center;
}

.cta-section h2 {
    color: var(--btn-primary-bg) !important;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: #bbb;
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 28px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    margin-top: 32px;
    align-items: start;
}

.contact-block {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--btn-primary-bg);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    min-width: 240px;
    box-shadow: var(--shadow-md);
}

.contact-block p {
    margin: 10px 0;
    color: var(--text-secondary);
    font-size: 0.97rem;
}

.contact-block a {
    color: var(--orange-dark);
    font-weight: 600;
}

.contact-note h3 {
    color: var(--text-heading);
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-note ul li {
    color: var(--text-secondary);
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.55;
    font-size: 0.97rem;
}

.contact-note ul li:last-child {
    border-bottom: none;
}

.contact-note ul li::before {
    content: "✓";
    color: var(--btn-primary-bg);
    position: absolute;
    left: 4px;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 24px 20px;
    font-size: 0.85rem;
    border-top: 3px solid var(--btn-primary-bg);
}

.site-footer p {
    margin: 4px 0;
    color: #888;
}

.site-footer a {
    color: var(--btn-primary-bg);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

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

@media (max-width: 700px) {
    .hero h1 { font-size: 1.6rem; }
    .site-nav .nav-links a { padding: 0 12px; font-size: 0.88rem; }
    .ai-section { flex-direction: column; align-items: flex-start; }
    .ai-badge { align-self: center; width: 110px; height: 110px; }
    .contact-layout { grid-template-columns: 1fr; gap: 28px; }
    .pain-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 40px 16px; }
}

@media (max-width: 480px) {
    .pain-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.4rem; }
    .service-examples-grid { grid-template-columns: 1fr; }
}
