/*
 Theme Name: Aardwolf Industries
 Theme URI: https://aardwolfindustries.com
 Description: Custom theme for Aardwolf Industries - Professional Material Handling Equipment
 Author: Aardwolf Industries
 Template: twentytwentyfive
 Version: 1.0.0
*/

/* AARDWOLF HOMEPAGE STYLES */

:root {
    --red: #ED1C24;
    --yellow: #FFC20E;
    --black: #000000;
    --dark-gray: #1A1A1A;
    --light-gray: #F5F5F5;
    --text-gray: #333333;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
}

/* TOP BAR */
.top-bar {
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: var(--red);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--red);
}

.lang-selector {
    background: transparent;
    border: 1px solid #444;
    color: var(--white);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
}

/* HEADER */
.header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
}

.logo-text {
    font-weight: 900;
    font-size: 24px;
    color: var(--black);
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--red);
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-main a:hover {
    color: var(--red);
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-main a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-contact a:hover {
    color: var(--red);
}

.btn-quote {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: #c41a1f;
}

.btn-quote::after {
    display: none !important;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.aardwolf.com.au/new_layout/new_images/new_banner_a1.png') center/cover;
    opacity: 0.15;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-badge {
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: #c41a1f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark-gray);
    color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 16px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .view-all {
    display: inline-block;
    margin-top: 15px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

/* CATEGORIES */
.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-gray);
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-image {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(237, 28, 36, 0.3);
}

.category-card:hover .category-icon {
    background: var(--red);
    color: var(--white);
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PRODUCTS */
.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 220px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left top;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
}

.product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 13px;
    margin-left: 8px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 11px;
    border-radius: 3px;
}

.btn-buy {
    background: var(--dark-gray);
    color: var(--white);
}

.btn-buy:hover {
    background: var(--red);
}

.btn-save {
    background: #ddd;
    color: var(--text-gray);
}

.btn-save:hover {
    background: #ccc;
}

/* ABOUT / TIMELINE */
.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-year {
    background: var(--red);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-text {
    font-size: 11px;
    color: #666;
    max-width: 80px;
}

.about-image-placeholder {
    background: #333;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* CONTACT */
.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.contact-card p {
    font-size: 13px;
    color: #666;
}

/* FOOTER */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--white);
}

.footer ul {
    list-style: none;
}

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

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--red);
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-main {
        display: none;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }

/* CONTACT PAGE */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('https://www.aardwolf.com.au/new_layout/new_images/new_banner_a1.png') center/cover;
    opacity: 0.1;
}

.page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-form-wrapper > p,
.contact-info-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ED1C24;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 13px;
    color: #666;
    text-transform: none;
    font-weight: 400;
}

.form-checkbox a {
    color: #ED1C24;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.info-content a {
    color: #ED1C24;
}

.info-note {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 3px;
}

.social-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

.social-link {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.social-link.facebook { background: #1877f2; }
.social-link.linkedin { background: #0a66c2; }
.social-link.youtube { background: #ff0000; }

.branches-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.branch-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.branch-card h3 {
    font-size: 16px;
    color: #ED1C24;
    margin-bottom: 8px;
}

.branch-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 32px;
    }
    .branches-grid {
        grid-template-columns: 1fr;
    }
}
    .top-bar-left {
        display: none;
    }
}