/* style.css - BrandBuckler Global Styles */

/* RESET & BASE STYLES */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* COLORS */
:root {
    --brand-pistachio: #D4F35B; 
    --brand-pistachio-hover: #bce03d;
    --bg-black: #000000;
    --bg-dark-grey: #121212;
    --bg-card: #1c1c1c;
    --bg-input: #2a2a2a;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --border-color: #333333;
}

/* HEADER */
header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-bar {
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    font-size: 0.8rem;
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    color: var(--text-grey);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

/* LOGO & ANIMATION */
.logo { font-size: 1.8rem; font-weight: 800; color: var(--text-white); display: flex; align-items: center; gap: 15px; }
.logo span { color: var(--brand-pistachio); }

.brandshield-loader { position: relative; width: 40px; height: 40px; }
.outer-ring { position: absolute; width: 100%; height: 100%; border: 3px solid transparent; border-top: 3px solid var(--brand-pistachio); border-radius: 50%; animation: rotate 2s linear infinite; }
.middle-ring { position: absolute; width: 70%; height: 70%; top: 15%; left: 15%; border: 2px solid transparent; border-top: 2px solid #ffffff; border-radius: 50%; animation: rotate 1.5s linear infinite reverse; }
.inner-ring { position: absolute; width: 40%; height: 40%; top: 30%; left: 30%; border: 2px solid transparent; border-top: 2px solid #888; border-radius: 50%; animation: rotate 1s linear infinite; }
.shield-icon { position: absolute; width: 10px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--brand-pistachio); clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); animation: pulse 2s ease-in-out infinite; }
.dot { position: absolute; width: 3px; height: 3px; background-color: var(--text-grey); border-radius: 50%; }
.dot-1 { top: 0; left: 50%; animation: float 3s infinite; }
.dot-2 { top: 50%; right: 0; animation: float 3s infinite 0.5s; }
.dot-3 { bottom: 0; left: 50%; animation: float 3s infinite 1s; }
.dot-4 { top: 50%; left: 0; animation: float 3s infinite 1.5s; }

@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; } }
@keyframes float { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* NAVIGATION */
.nav-links { display: flex; gap: 25px; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand-pistachio); }
.btn-demo { background: var(--brand-pistachio); color: #000; padding: 10px 25px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; }
.btn-demo:hover { background: var(--brand-pistachio-hover); }

/* HERO */
.hero { background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); color: white; padding: 100px 5%; text-align: center; min-height: 550px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-bottom: 1px solid #222; }
.hero h1 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.1; }
.hero p { font-size: 1.4rem; margin-bottom: 40px; color: var(--text-grey); max-width: 700px; }
.hero-btn { background: transparent; color: var(--brand-pistachio); border: 2px solid var(--brand-pistachio); padding: 15px 40px; font-size: 1rem; font-weight: bold; border-radius: 50px; text-transform: uppercase; }
.hero-btn:hover { background: var(--brand-pistachio); color: #000; box-shadow: 0 0 15px rgba(212, 243, 91, 0.4); }

/* INTRO */
.intro { background-color: var(--bg-black); text-align: center; padding: 80px 20%; }
.intro h2 { font-size: 2.2rem; margin-bottom: 20px; }
.intro p { font-size: 1.1rem; color: var(--text-grey); margin-bottom: 30px; }

/* FEATURES/PRODUCTS */
.features-section { padding: 80px 5%; background: var(--bg-dark-grey); flex: 1; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--bg-card); border: 1px solid #333; border-radius: 8px; padding: 35px; transition: transform 0.3s, border-color 0.3s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--brand-pistachio); }
.icon { font-size: 2.5rem; margin-bottom: 20px; display: block; filter: grayscale(100%) sepia(100%) hue-rotate(50deg) saturate(500%); }
.feature-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.feature-card p { color: var(--text-grey); font-size: 0.95rem; margin-bottom: 20px; }
.link-arrow { color: var(--brand-pistachio); font-weight: bold; font-size: 0.9rem; text-transform: uppercase; }

/* CUSTOMERS */
.customers-section { padding: 80px 5%; background: #000; text-align: center; border-bottom: 1px solid #222; flex: 1; }
.logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 60px; margin-top: 50px; }
.brand-logo-img { max-height: 90px; max-width: 300px; opacity: 0.6; filter: grayscale(100%) brightness(1.5); transition: 0.3s; }
.brand-logo-img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }

/* COMPANY */
.company-section { padding: 100px 20%; background: var(--bg-dark-grey); flex: 1; }
.company-content p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-grey); text-align: justify; }
.company-content strong { color: var(--brand-pistachio); }

/* STATS */
.stats { background: #000; padding: 80px 5%; display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center; border-top: 1px solid #222; }
.stat-item { flex: 1; min-width: 200px; padding: 20px; }
.stat-number { font-size: 4rem; font-weight: 700; color: var(--brand-pistachio); display: block; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 1.2rem; font-weight: bold; display: block; margin-bottom: 10px; }
.stat-desc { opacity: 0.6; font-size: 0.9rem; color: #ccc; }

/* CONTACT */
.contact-section { padding: 100px 5%; background: var(--bg-black); border-top: 1px solid #222; flex: 1; }
.contact-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.contact-info-box h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-details { margin-top: 30px; padding: 30px; background: var(--bg-card); border-radius: 8px; border-left: 4px solid var(--brand-pistachio); }
.contact-details h3 { margin-bottom: 20px; }
.detail-item { margin-bottom: 20px; display: flex; flex-direction: column; }
.detail-label { font-weight: bold; color: var(--brand-pistachio); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 5px; }
.detail-value { color: #ddd; }

.contact-form-box { background: var(--bg-card); padding: 40px; border-radius: 8px; border: 1px solid #333; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; background-color: var(--bg-input); border: 1px solid #444; color: #fff; border-radius: 4px; font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand-pistachio); outline: none; background-color: #333; }
.btn-submit { background: var(--brand-pistachio); color: #000; border: none; padding: 15px 30px; font-size: 1rem; font-weight: 800; text-transform: uppercase; border-radius: 4px; cursor: pointer; width: 100%; transition: 0.3s; }
.btn-submit:hover { background: var(--brand-pistachio-hover); box-shadow: 0 0 10px rgba(212, 243, 91, 0.3); }

/* FOOTER */
footer { background: #000; color: var(--text-grey); padding: 80px 5% 30px; border-top: 1px solid #222; font-size: 0.9rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 1.1rem; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--brand-pistachio); }
.footer-bottom { border-top: 1px solid #222; padding-top: 30px; text-align: center; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .company-section { padding: 60px 5%; }
}
/* --- LEGAL SEAL STYLES --- */
.legal-seal-container {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.legal-badge {
    border: 2px solid #b8860b; /* Dark Gold Border */
    color: #d4af37; /* Gold Text */
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(184, 134, 11, 0.1); /* Slight gold tint background */
    border-radius: 4px;
}
.legal-badge span {
    font-size: 1.5rem;
}