/*
Theme Name: New Concepts OZ
Theme URI: https://newconceptsoz.com.au
Author: New Concepts OZ
Author URI: https://newconceptsoz.com.au
Description: Professional Marketing, Advertising & Distribution theme for New Concepts OZ Australia. One-page business theme with sections for About, Companies, Services, Projects, Testimonials and Contact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
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: new-concepts-oz
Tags: one-page, business, marketing, custom-menu, custom-logo, featured-images, translation-ready
*/

:root {
    --primary-dark: #0a1628;
    --secondary-dark: #0d2137;
    --navy: #122b45;
    --accent-gold: #d4a017;
    --accent-gold-hover: #c49210;
    --text-white: #ffffff;
    --text-light: #e8eef5;
    --text-muted: #9aafc2;
    --card-bg: #0f2438;
    --border-light: rgba(255,255,255,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--text-light);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: var(--text-light);
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--accent-gold);
}

.top-bar i {
    margin-right: 6px;
    color: var(--accent-gold);
}

/* Header / Navbar */
header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img,
.custom-logo,
.site-logo-img {
    height: 100px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a,
.nav-links .menu-item a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item a,
.nav-links .current_page_item a {
    color: var(--accent-gold);
}

.nav-links a.active::after,
.nav-links .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.btn-quote {
    background: var(--accent-gold);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.3s, transform 0.2s;
}

.btn-quote:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-dark);
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 580px;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.55) 55%, rgba(10, 22, 40, 0.35) 100%),
                url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 580px;
}

.hero-content .welcome {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 15.5px;
    color: #c8d4e0;
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-gold);
    color: #fff;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid var(--accent-gold);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Trusted By */
.trusted {
    background: #fff;
    padding: 35px 0;
    border-bottom: 1px solid #eee;
}

.trusted .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trusted-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logos span {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trusted-logos .google { color: #4285F4; }
.trusted-logos .microsoft { color: #00A4EF; }
.trusted-logos .aws { color: #FF9900; }
.trusted-logos .xero { color: #13B5EA; }
.trusted-logos .adobe { color: #FF0000; }
.trusted-logos .meta { color: #0668E1; }
.trusted-logos .stripe { color: #635BFF; }

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--primary-dark);
    color: #fff;
    padding: 18px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.experience-badge .label {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.about-content .subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 18px;
}

.about-content > p {
    color: #555;
    margin-bottom: 30px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.feature-item {
    text-align: left;
}

.feature-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 162, 39, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-size: 18px;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Our Companies */
.companies {
    padding: 70px 0;
    background: var(--primary-dark);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.company-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.company-card:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.company-card .icon {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.company-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.company-card a {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.company-card a:hover {
    text-decoration: underline;
}

.company-card .company-logo {
    width: 72px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.company-card .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.company-card.has-logo {
    padding-top: 18px;
}

.company-card .company-meta {
    font-size: 11px;
    color: #a0b0c0;
    margin: 0 0 10px;
    line-height: 1.35;
}

.company-card .company-meta i {
    color: var(--accent-gold);
    margin-right: 4px;
    font-size: 10px;
}


.companies-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 900px;
    margin: 0 auto;
}

.company-logo-lg {
    width: 100px !important;
    height: 100px !important;
}

@media (max-width: 700px) {
    .companies-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Our Services */
.services {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card .content {
    padding: 22px;
}

.service-card .icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.service-card .icon-title i {
    color: var(--accent-gold);
    font-size: 18px;
}

.service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 13.5px;
    color: #666;
}

/* Achievements & Projects */
.achievements-projects {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: var(--primary-dark);
    color: #fff;
}

.achievements {
    padding: 60px 40px;
    background: linear-gradient(135deg, #0b1c2c, #132f4c);
}

.achievements h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: left;
}

.stat-item .icon {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-item .number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-item .label {
    font-size: 13px;
    color: #a0b0c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-projects {
    padding: 50px 40px;
    background: #0f2438;
}

.featured-projects h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.project-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 30px 12px 12px;
}

.project-card h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.project-card span {
    font-size: 11px;
    color: #bbb;
}

.view-all {
    text-align: right;
}

.view-all a {
    display: inline-block;
    background: var(--accent-gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
}

.view-all a:hover {
    background: var(--accent-gold-hover);
    color: #fff;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.9fr;
    gap: 25px;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.testimonial-card .quote {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 12px;
    color: #888;
}

.stars {
    color: var(--accent-gold);
    font-size: 12px;
    margin-bottom: 8px;
}

.cta-card {
    background: linear-gradient(135deg, #0b1c2c, #1a3a5c);
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    color: #c0cdd8;
    margin-bottom: 20px;
}

.cta-card .btn-primary {
    align-self: flex-start;
}

.cta-card .person {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 140px;
    height: auto;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: #c0cdd8;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 18px;
    display: inline-block;
}

.footer-brand .logo img,
.footer-brand .custom-logo {
    height: 80px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gold);
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13.5px;
    color: #a0b0c0;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
}

.contact-info i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom a {
    color: #a0b0c0;
    margin-left: 15px;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* WordPress specific */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-card {
        grid-column: span 2;
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .achievements-projects {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-radius: 8px;
        gap: 15px;
        z-index: 1001;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cta-card {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        height: 520px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}


/* ===== Attractive upgrades ===== */
:root {
    --accent-green: #7cb342;
    --accent-green-dark: #689f38;
}

.top-bar {
    background: linear-gradient(90deg, #0a1628 0%, #0d2137 100%);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    gap: 16px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-sep {
    opacity: 0.35;
    margin: 0 4px;
}

header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    border-bottom: 1px solid rgba(10, 22, 40, 0.04);
}

.navbar {
    padding: 10px 0;
    min-height: 110px;
}

.logo {
    display: flex;
    align-items: center;
}

.site-logo-img,
.logo img,
.custom-logo {
    height: 100px !important;
    width: auto !important;
    max-width: 340px;
    object-fit: contain;
    display: block;
}

.logo {
    flex-shrink: 0;
    padding: 4px 0;
}

.footer-logo-img {
    height: 100px !important;
    max-width: 320px;
    background: transparent !important;
    border-radius: 0;
    padding: 0;
    box-shadow: none !important;
    filter: none;
}

@media (max-width: 600px) {
    .site-logo-img,
    .logo img,
    .custom-logo {
        height: 70px !important;
        max-width: 220px;
    }
}

.nav-links a,
.nav-links .menu-item a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 6px 2px;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item a {
    color: var(--accent-green);
}

.nav-links a.active::after,
.nav-links .current-menu-item a::after {
    background: var(--accent-green);
}

.btn-quote {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.35);
    padding: 11px 24px;
    border-radius: 6px;
}

.btn-quote:hover {
    background: linear-gradient(135deg, var(--accent-green-dark) 0%, #558b2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 179, 66, 0.45);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    border-color: var(--accent-green);
    box-shadow: 0 4px 14px rgba(124, 179, 66, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green-dark) 0%, #558b2f 100%);
    border-color: var(--accent-green-dark);
}

.hero {
    background: linear-gradient(105deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.65) 50%, rgba(10, 22, 40, 0.4) 100%),
                url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-content .welcome {
    color: var(--accent-green);
}

.company-card:hover {
    border-color: var(--accent-green);
    background: rgba(124, 179, 66, 0.12);
}

.company-card .icon {
    color: var(--accent-green);
}

.company-card a {
    color: var(--accent-green);
}

.service-card .icon-title i {
    color: var(--accent-green);
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.experience-badge .years {
    color: var(--accent-green);
}

.stars {
    color: var(--accent-green);
}

.social-links a:hover {
    background: var(--accent-green);
}

.footer-col ul li a:hover,
.top-bar a:hover {
    color: var(--accent-green);
}

.contact-info i {
    color: var(--accent-green);
}

.view-all a {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
}

.view-all a:hover {
    background: linear-gradient(135deg, var(--accent-green-dark) 0%, #558b2f 100%);
}

@media (max-width: 600px) {
    .site-logo-img,
    .logo img,
    .custom-logo {
        height: 70px !important;
        max-width: 220px;
    }
    .top-bar {
        font-size: 12px;
        text-align: center;
    }
    .top-bar .container {
        justify-content: center;
    }
}


/* FORCE LARGE HEADER LOGO */
header .logo img,
header .site-logo-img,
header .custom-logo,
header .custom-logo-link img,
.navbar .logo img {
    height: 100px !important;
    width: auto !important;
    max-width: 360px !important;
    max-height: 100px !important;
    object-fit: contain !important;
    display: block !important;
}

header .navbar {
    min-height: 120px !important;
    padding: 12px 0 !important;
}

@media (max-width: 900px) {
    header .logo img,
    header .site-logo-img,
    header .custom-logo,
    header .custom-logo-link img {
        height: 70px !important;
        max-width: 240px !important;
    }
    header .navbar {
        min-height: 90px !important;
    }
}

/* Footer logo – transparent on dark */
.footer-brand .logo img,
.footer-brand .footer-logo-img,
.footer-brand .site-logo-img {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    height: 100px !important;
    max-width: 300px !important;
    width: auto !important;
    object-fit: contain !important;
}
