/* ========================================
   BAYOU WEBSITES - CONSOLIDATED STYLES
   ======================================== */

:root {
    --primary-dark: #1e3a8a;
    --primary-blue: #3b82f6;
    --warning: #fbbf24;
    --warning-dark: #f59e0b;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-200: #e5e7eb;
    --gray-600: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a !important;
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    color: var(--primary-blue) !important;
}

.navbar-toggler {
    border: 2px solid #1e3a8a;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 58, 138, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    margin-top: 76px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
}

/* Feature Boxes */
.feature-box {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    padding-left: 1.5rem;
}

.feature-box:hover {
    transform: translateX(8px);
    border-left-color: var(--primary-blue);
}

.feature-icon-lg {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 4px solid #1e3a8a;
    display: inline-flex;
}

.feature-icon-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards */
.card {
    border: 1px solid #000000;
    border-radius: 0;
    transition: all 0.3s ease;
}

.process-card {
    border-left: 6px solid var(--primary-blue);
    border-radius: 0;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-dark);
}

.process-number {
    font-weight: 700;
    opacity: 0.15;
    font-size: 4rem;
}

.package-modern {
    border: 3px solid var(--gray-200);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.package-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.package-modern-featured {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    border-width: 4px;
    z-index: 2;
}

.package-modern-featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.testimonial-modern {
    border-left: 6px solid var(--primary-blue);
    border-radius: 0;
    padding: 2rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.testimonial-modern:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-dark);
}

/* Footer */
footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--gray-900);
    font-weight: 700;
}

.btn-warning:hover {
    background-color: var(--warning-dark);
    border-color: var(--warning-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-width: 3px;
}

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

/* Modal */
.modal-content {
    border-radius: 0;
    border: 4px solid var(--primary-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 4rem 0 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }
}
