/* style.css - Bold Corporate Identity & Typography Grid */
:root {
    --primary: #060F1E;
    --primary-light: #0D1C33;
    --accent: #C5A059;
    --accent-hover: #E6C27E;
    --accent-muted: rgba(197, 160, 89, 0.1);
    --text-main: #1E293B;
    --text-muted: #475569;
    --text-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 4px;
}

/* Auto Dark Mode Integration */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-light: #0D1C33;
        --bg-white: #060F1E;
        --text-main: #F1F5F9;
        --text-muted: #94A3B8;
        --shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-white); color: var(--text-main); line-height: 1.8; -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
@media (prefers-color-scheme: dark) { h1, h2, h3, h4 { color: #fff; } }
a { text-decoration: none; color: inherit; transition: var(--transition); }
li { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6.5rem 0; border-bottom: 1px solid rgba(148, 163, 184, 0.1); }

/* Master Action Buttons Hierarchy */
.btn-group { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #A88444);
    color: #fff !important;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--accent);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}
.btn:hover { background: transparent; color: var(--accent) !important; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35); }

.btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

.btn-center-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }

/* Header & Global Nav Architecture */
header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(6, 15, 30, 0.98); border-bottom: 1px solid rgba(197, 160, 89, 0.25); backdrop-filter: blur(8px); z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: 1.5px; }
.logo span { color: var(--accent); }
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
.nav-link { color: rgba(255, 255, 255, 0.85); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link:hover { color: var(--accent); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background-color: #fff; }

/* Hero Showpiece */
.hero { height: 90vh; min-height: 600px; background: linear-gradient(rgba(6, 15, 30, 0.82), rgba(6, 15, 30, 0.96)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover; display: flex; align-items: center; color: #fff; padding-top: 90px; }
.hero h1 { font-size: 3.4rem; line-height: 1.2; margin-bottom: 1.2rem; font-weight: 700; color: #fff; }
.hero h1 span { color: var(--accent); font-weight: 400; font-size: 1.8rem; display: block; margin-top: 0.5rem; font-family: 'Inter', sans-serif; letter-spacing: 1px; }
.hero p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; max-width: 850px; font-weight: 300; }

/* Section Structuring & Typography formatting */
.section-title { font-size: 2rem; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.5px; border-left: 4px solid var(--accent); padding-left: 1rem; }
.text-block p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1.05rem; text-align: justify; }

/* Service Lists Blocks */
.list-header { font-weight: 700; color: var(--primary); margin: 1.5rem 0 1rem 0; font-size: 1.1rem; }
@media (prefers-color-scheme: dark) { .list-header { color: #fff; } }
.bold-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.bold-list li { position: relative; padding-left: 1.8rem; font-weight: 500; font-size: 0.98rem; color: var(--text-main); }
.bold-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Form Intakes & Secure Elements */
.contact-wrapper { max-width: 780px; margin: 0 auto; background-color: var(--bg-light); padding: 3.5rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(197, 160, 89, 0.15); }
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1.1rem; border: 1px solid rgba(148, 163, 184, 0.25); background-color: var(--bg-white); color: var(--text-main); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-muted); }
.contact-wrapper .btn { width: 100%; }

/* AJAX Response Panels */
.form-status { padding: 1.1rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; text-align: center; display: none; margin-bottom: 1.5rem; }
.form-status.success { background: #E8F5E9; color: #1B5E20; border: 1px solid #C8E6C9; }
.form-status.error { background: #FFEBEE; color: #B71C1C; border: 1px solid #FFCDD2; }

/* Floating Support Element */
.callback-widget { position: fixed; bottom: 30px; right: 30px; z-index: 2000; background-color: var(--primary-light); border: 1px solid var(--accent); padding: 2rem; border-radius: var(--radius); box-shadow: 0 25px 60px rgba(0,0,0,0.4); max-width: 320px; color: #fff; }
.callback-widget h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
.callback-widget p { font-size: 0.85rem; color: #94A3B8; margin-bottom: 1.2rem; line-height: 1.5; }
.callback-widget input { width: 100%; padding: 0.9rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.4); color: #fff; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.95rem; }
.callback-widget .btn { width: 100%; padding: 0.9rem; font-size: 0.75rem; }
.callback-close { position: absolute; top: 12px; right: 15px; cursor: pointer; color: #94A3B8; font-size: 0.8rem; }

footer { background-color: #030812; color: #64748B; padding: 4rem 0; text-align: center; font-size: 0.85rem; border-top: 1px solid rgba(197, 160, 89, 0.15); }

/* Mobile Adaptations */
@media (max-width: 992px) {
    .nav-menu { display: none; position: absolute; top: 90px; left: 0; width: 100%; background-color: var(--primary); flex-direction: column; padding: 3rem 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(197, 160, 89, 0.2); }
    .nav-menu.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero h1 { font-size: 2.4rem; }
    .callback-widget { left: 15px !important; right: 15px !important; max-width: calc(100% - 30px); bottom: 15px; }
}





