/* Custom CSS for Lowen Limited */
:root {
    --primary-color: #C39D50; /* Gold/Tan from the logo */
    --primary-dark: #A38038;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #EAEAEA;
    --success: #28A745;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-bottom {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-name {
    text-align: center;
    flex: 1;
}

.logo-name img {
    height: 35px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.header-contact {
    text-align: right;
    font-size: 0.95rem;
}

.header-contact p {
    margin-bottom: 5px;
}
.header-contact a {
    color: var(--text-main);
}
.header-contact a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge span {
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Services */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-details {
    padding: 30px;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 30px;
    box-shadow: 0 4px 10px rgba(195, 157, 80, 0.3);
}

.service-details h3 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.split-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.info-box {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-box a {
    color: var(--text-main);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(195, 157, 80, 0.1);
}

.success-msg {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background-color: var(--text-main);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    /* Basic filter to make the logo visible on dark background if it's black text */
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: #ccc;
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

/* Cookie Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        min-height: 80px;
        padding: 15px 20px;
    }
    
    .logo {
        margin-right: 15px;
    }

    .logo img {
        height: 50px;
    }
    
    .logo-name {
        margin: 0;
        text-align: left;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 1001; /* Keep above dropdown */
    }
    
    /* Hide contact info entirely on mobile */
    .header-contact {
        display: none !important; 
    }

    .header-bottom {
        display: none;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        padding: 20px 0;
    }
    
    .mobile-menu-open .header-bottom {
        display: block;
    }
    
    .mobile-menu-open .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: right;
        padding-right: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .split-list {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
