/* Locate Us Page Styles - White Theme */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Clean Background */
.neon-bg {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.layer.grid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.layer.orb {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.layer.orb.one {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.2) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.layer.orb.two {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.layer.orb.three {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.brand img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand img:hover {
    transform: scale(1.05);
}

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

.nav a {
    color: #333333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #7CB342;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7CB342;
    transition: width 0.3s ease;
}

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

.actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn.primary {
    background: linear-gradient(135deg, #7CB342 0%, #FFB300 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.btn.ghost {
    border: 2px solid #7CB342;
    color: #7CB342;
    background: transparent;
}

.btn.ghost:hover {
    background: #7CB342;
    color: #ffffff;
}

/* Card */
.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
    color: #7CB342;
    margin-bottom: 16px;
    font-size: 24px;
}

/* Utilities */
.muted {
    color: #666666;
    line-height: 1.6;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

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

.footer-col h5 {
    color: #7CB342;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #7CB342;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    main > div {
        grid-template-columns: 1fr !important;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .brand img {
        height: 40px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .card {
        padding: 16px;
    }
}
