/* ===================================
   Stalwart Resources - Custom Styles
   Navy Blue: #1a365d
   Gold Accent: #d4a017
   =================================== */

:root {
    --primary: #1a365d;
    --primary-dark: #0f2442;
    --primary-light: #2d4a73;
    --gold: #d4a017;
    --gold-light: #e6b832;
    --gold-dark: #b8890f;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
}

/* Base Styles */
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--primary);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-scrolled {
    background: var(--primary) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white);
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-nav {
    background: var(--gold) !important;
    color: var(--primary) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('../assets/img/hero-bg.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 36, 66, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--primary);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.text-center .section-title::after {
    margin: 1rem auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--gold);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* What We Buy - Interest List */
.interest-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.interest-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.interest-item i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.interest-item h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.interest-item p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 3px solid var(--gold);
}

.step-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex-grow: 1;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Coverage Map Section */
.section-map {
    background: url('../assets/img/texas-landscape.jpg') center center / cover no-repeat;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.9);
}

.coverage-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.coverage-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.coverage-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.coverage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-card li {
    color: rgba(255,255,255,0.8);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-stars i {
    margin-right: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Contact Section */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-message .alert {
    border-radius: 8px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-info-item h5 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
}

.contact-info-item a:hover {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 2rem 0;
    color: rgba(255,255,255,0.7);
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-link {
    color: var(--gold);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-cta .btn.ms-3 {
        margin-left: 0 !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-content {
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Gold accent for management icons */
.text-gold {
    color: #d4a017 !important;
}
