:root {
    --primary-text: #444;
    --secondary-text: #666;
    --accent-blue: #4a7ebb;
    --accent-magenta: #c2185b;
    --accent-red: #d9534f;
    --bg-dark: #373a3c;
    --bg-light: #f9f9f9;
    --border-color: #ddd;
    --font-head: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

.text-magenta {
    color: var(--accent-magenta);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-blue {
    background-color: var(--accent-blue);
}

.btn-magenta {
    background-color: var(--accent-magenta);
}

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

/* Top Bar */
/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.separator-bar {
    background-color: #373a3c;
    height: 25px;
    /* Reduced height */
    width: 100%;
}

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

.logo-k3 {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 300;
    border-right: 2px solid var(--accent-magenta);
    padding-right: 15px;
    margin-right: 15px;
    line-height: 1;
    color: #333;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-head);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #555;
    font-weight: 300;
}

.logo-slogan {
    font-size: 0.75rem;
    color: #888;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-header {
    text-align: right;
    font-size: 0.9rem;
    color: #888;
}

.contact-header p {
    margin-bottom: 3px;
}

.contact-header i {
    color: var(--accent-magenta);
    margin-right: 5px;
}

/* Navigation */
.main-nav {
    background-color: #373a3c;
    color: white;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-right: 1px;
}

.nav-links .nav-item {
    display: block;
    padding: 15px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
    cursor: default;
}

.nav-links .nav-item:hover {
    background-color: #444;
    color: white;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push text to right */
    padding: 80px 50px;
    position: relative;
    background-image: url('header_RW_1200x480_3.jpg');
    background-size: cover;
    background-position: left center;
    /* Assume face is on left */
    background-repeat: no-repeat;
    min-height: 480px;
    /* Match image height roughly */
    border-radius: 5px;
    /* Slight rounding if container is boxed */
}

/* Remove old hero image styles */

.hero-content {
    flex: 0 0 50%;
    /* Take up half width */
    position: relative;
    padding-left: 20px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
    /* Keep on one line */
    /* Ensure readability if overlapping */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-sub {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

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

.static-btn {
    cursor: default;
}

.static-btn:hover {
    opacity: 1;
    /* No hover effect */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    /* Ensure cards stretch to equal height */
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #eee;
    /* Outline for card definition */
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-magenta);
    margin-bottom: 25px;
    text-align: left;
    /* Align icon left or center as preferred, design seems ledt aligned lists... lets try center for icon */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align icon matching list */
    height: 60px;
}

.service-icon i {
    /* Optional gradient clip if supported, but solid color is safer */
    background: -webkit-linear-gradient(45deg, var(--accent-magenta), #e91e63);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix lint warning */
    -webkit-text-fill-color: transparent;
    /* Fallback */
    color: var(--accent-magenta);
}

.service-card h3 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    min-height: 3.2rem;
    /* Reserve space for 2 lines title */
}

.service-card ul {
    flex-grow: 1;
    /* Pushes bottom content if we had any, or ensures spacing */
}

.service-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.service-card ul li::before {
    content: '•';
    color: var(--accent-magenta);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Why Sparring (Dark Section) */
.dark-bg {
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
}

.section-title.white {
    color: white;
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
}

.feature-item {
    flex: 1;
    padding: 0 20px;
}

.icon-magenta {
    color: var(--accent-magenta);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

.feature-item p {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* Logos Section */
.serif-title {
    font-family: 'Times New Roman', serif;
    font-style: normal;
    font-size: 1.8rem;
    margin-bottom: 60px;
    /* Increased spacing */
    color: #555;
    line-height: 1.3;
    text-align: center;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.client-logo-img {
    height: 50px;
    /* Fixed height for consistency */
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin: 15px 30px;
    /* More spacing */
    transition: transform 0.3s ease;
}

.client-logo-img:hover {
    transform: scale(1.05);
    /* Keep slight zoom, but no color change */
}

/* Contact Split */
.split-wrapper {
    display: flex;
    gap: 50px;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    padding: 40px;
}

.quote-side {
    flex: 1;
    padding-right: 40px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-quote {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.quote-sub {
    font-weight: bold;
    color: var(--accent-magenta);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.form-side {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: var(--font-body);
}

/* Footer */
.main-footer {
    background-color: #3b3f42;
    /* Slightly lighter than nav */
    color: #aaa;
    padding: 50px 0 20px;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

.footer-col ul li a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    padding: 8px;
    border: none;
    flex: 1;
}

.newsletter-form button {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section {
        /* Keep background but ensure text is readable */
        justify-content: center;
        background-position: 20% center;
        /* Shift focus slightly */
        align-items: flex-end;
        /* Move text card to bottom */
        padding-bottom: 40px;
    }

    .hero-content {
        flex: 0 0 100%;
        max-width: 600px;
        background: rgba(255, 255, 255, 0.9);
        /* White card background */
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .hero-content h1,
    .hero-sub,
    .hero-title {
        text-shadow: none;
        /* Remove text shadow for better contrast on card */
    }

    .hero-title {
        white-space: normal;
        /* Allow wrapping on mobile */
        font-size: 2.5rem;
        /* Reduce font size */
    }

    .hero-buttons {
        justify-content: center;
    }

    .k3-seal,
    .swiss-flag {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 20px;
    }

    .contact-header {
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        flex-direction: column;
        gap: 30px;
    }

    .split-wrapper {
        flex-direction: column;
        border: none;
        padding: 0;
    }

    .quote-side {
        border-right: none;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}