/* Custom Styles for Smart City Complaint System */

/* Dark Theme Enhancements */
body {
    background-color: #121212; /* Darker background for cinematic feel */
    color: #e0e0e0; /* Light text for better readability */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* Main content area */
main {
    padding-bottom: 3rem;
}

/* Navigation styling */
.navbar {
    background-color: rgba(0, 0, 0, 0.85) !important; /* Semi-transparent black */
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bs-primary) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ccc;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

/* Footer styling */
.footer {
    background-color: #080808; /* Very dark footer */
    border-top: 1px solid #333;
    color: #adb5bd;
    padding: 1.5rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Use Bootstrap's dark theme variables with enhancements */
.card {
    background-color: #1e1e1e !important; /* Darker card background */
    border: 1px solid #333 !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.card-header {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid #333;
}

.list-group-item {
    background-color: #222222 !important;
    border: 1px solid #333 !important;
    color: #ddd;
}

.list-group-item:hover {
    background-color: #2a2a2a !important;
}

.table {
    color: #e0e0e0 !important; 
}

.table-dark {
    background-color: #1a1a1a;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.1) !important; /* Subtle highlight with primary color */
    color: #fff !important;
}

/* Form styling */
.form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #e0e0e0;
}

.form-control:focus {
    background-color: #333;
    color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-label {
    color: #ccc;
    font-weight: 500;
}

/* Login/Register Form Styling */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
}

.form-container h2 {
    margin-bottom: 25px;
    color: var(--bs-primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Index page specific styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../images/city-night.jpg'); /* Dark city background */
    background-size: cover;
    background-position: center;
    color: white;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 3rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.feature-box {
    background-color: #1e1e1e !important;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.5rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2); /* Glow effect with primary color */
}

/* Badge styling */
.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
}

.badge.bg-warning {
    color: #000 !important;
}

.badge.bg-info {
    color: #000 !important;
}

/* Button styling */
.btn {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: #d39e00;
    border-color: #c69500;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* Secondary buttons */
.btn-secondary {
    background-color: #2c2c2c;
    border-color: #444;
}

.btn-secondary:hover {
    background-color: #3a3a3a;
    border-color: #555;
}

/* Alert styling */
.alert {
    border-radius: 8px;
    border-width: 1px;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.2);
    border-color: rgba(25, 135, 84, 0.5);
    color: #75b798;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
    color: #ea868f;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.2);
    border-color: rgba(13, 202, 240, 0.5);
    color: #6edff6;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffda6a;
}

/* Color scheme - cinematic dark theme with amber/gold as primary */
:root {
  --bs-primary: #FFC107; /* Amber/Gold as primary */
  --bs-primary-rgb: 255, 193, 7;
  --bs-secondary: #6c757d;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-dark: #212529;
  --bs-dark-rgb: 33, 37, 41;
}

.text-primary {
    color: var(--bs-primary) !important;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-section, .feature-box, .card, .form-container {
  animation: fadeIn 0.8s ease-in-out;
}

/* Dashboard specific styles */
.stats-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--bs-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.stats-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: var(--bs-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        margin: 20px 15px;
        padding: 20px;
    }
    
    .hero-section {
        padding: 2rem !important;
    }
}

/* General Body Styling */
body.bg-dark {
    background: linear-gradient(135deg, #23272a 0%, #1c1e22 100%); /* Dark gradient background */
    color: #f8f9fa; /* Light text */
}

/* Landing Page Specific Styles */
.landing-page {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 80vh; /* Adjust height as needed */
    padding: 4rem 0;
    position: relative;
    overflow: hidden; /* Prevents animation overflow issues */
    /* Placeholder for background image - uncomment and replace path */
    /*
    background: url('../assets/images/city_background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; // Creates a subtle parallax effect
    */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

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

.hero-content {
    background-color: rgba(44, 48, 52, 0.8); /* Slightly transparent dark background */
    backdrop-filter: blur(5px); /* Blur effect for modern look */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content .display-4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
    background-color: #2c3034; /* Slightly lighter dark section */
}

.feature-box {
    background-color: rgba(52, 58, 64, 0.7); /* Darker box background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%; /* Ensure boxes have equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon i {
    transform: scale(1.1);
}

/* Animation Definitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
     from { opacity: 0; }
     to { opacity: 1; }
}

/* Animation Application Classes */
.animate-on-load,
.animate-on-scroll {
    opacity: 0; /* Start hidden */
    /* Add will-change for potential performance boost */
    will-change: opacity, transform;
}

/* Class added by JS when element is in view or on load */
.is-visible {
    opacity: 1;
}

/* Apply specific animations */
.is-visible[data-animation="fade-in-up"] {
    animation: fadeInUp 0.8s ease-out forwards;
}
.is-visible[data-animation="fade-in-left"] {
    animation: fadeInLeft 0.8s ease-out forwards;
}
.is-visible[data-animation="fade-in-right"] {
    animation: fadeInRight 0.8s ease-out forwards;
}
.is-visible[data-animation="fade-in"] {
     animation: fadeIn 0.8s ease-out forwards;
}

/* --- Add this if not already present in your style.css --- */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer.footer {
     background-color: #212529; /* Even darker footer */
     color: #adb5bd;
     padding: 2rem 0;
     margin-top: auto; /* Pushes footer down */
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    color: var(--bs-primary);
    text-decoration: none;
}

footer a:hover {
    color: var(--bs-light);
    text-decoration: underline;
}

/* Adjust Bootstrap Button Hovers for more pop */
.btn-primary:hover,
.btn-success:hover,
.btn-outline-primary:hover,
.btn-outline-success:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.btn {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Added section styling */
.section-title {
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.bg-darker-shade {
    background-color: #1c1e22; /* Slightly darker than features section */
}

/* How It Works Section */
.how-it-works-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon i {
    transition: transform 0.3s ease;
}

.animate-on-scroll:hover .step-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Benefits Section */
.benefits-section h3 i {
    margin-right: 0.5rem;
}
.benefits-section ul li {
    padding-left: 0.5rem;
}

/* Call to Action Section */
.cta-section {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
    font-weight: bold;
}

/* Delay animations for staggered effect */
.is-visible[data-animation-delay="0.1"] { animation-delay: 0.1s; }
.is-visible[data-animation-delay="0.2"] { animation-delay: 0.2s; }
.is-visible[data-animation-delay="0.3"] { animation-delay: 0.3s; }

/* Landing Page V2 Specific Styles */
.landing-page-v2 {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* --- Hero Section V2 --- */
.hero-section-v2 {
    min-height: 100vh; /* Full viewport height */
    position: relative; /* Needed for absolute positioning of canvas */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#threejs-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind content */
}

#threejs-canvas-container canvas {
    display: block; /* Prevent extra space below canvas */
}

.hero-content-container {
    position: relative;
    z-index: 2; /* Above canvas */
    max-width: 800px; /* Limit content width */
}

.hero-text-content {
    /* Optional: add a subtle background for readability if needed */
    /* background-color: rgba(0, 0, 0, 0.3); */
    /* backdrop-filter: blur(3px); */
    /* border-radius: 10px; */
    padding: 2rem;
}

.hero-icon i {
    color: var(--bs-primary);
    text-shadow: 0 0 15px var(--bs-primary);
}

.hero-title {
    font-size: calc(2.5rem + 2vw);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -1px;
    opacity: 0; /* Start hidden for GSAP */
    transform: translateY(20px); /* Start slightly lower for GSAP */
}

.hero-subtitle {
    font-size: calc(1rem + 0.5vw);
    color: #e0e0e0;
    margin-bottom: 2rem;
    opacity: 0; /* Start hidden for GSAP */
    transform: translateY(20px); /* Start slightly lower for GSAP */
}

.hero-button {
     opacity: 0; /* Start hidden for GSAP */
     transform: translateY(20px); /* Start slightly lower for GSAP */
}

/* --- General Section Styling --- */
.section-dark {
    background-color: #1a1d20; /* Slightly different dark shade */
}
.section-light-dark {
    background-color: #23272a; /* Matches body gradient */
}

.section-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

/* --- Features Section V2 --- */
.feature-box-v2 {
    background-color: rgba(44, 48, 52, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-box-v2:hover {
    background-color: rgba(44, 48, 52, 0.8);
    transform: translateY(-5px);
}

.feature-icon-v2 i {
    transition: transform 0.3s ease;
}

.feature-box-v2:hover .feature-icon-v2 i {
     transform: scale(1.1);
}

.feature-title {
    color: #fff;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #ccc;
}

/* --- How It Works Section V2 --- */
.step-box {
    background-color: rgba(52, 58, 64, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: background-color 0.3s ease;
}

.step-box:hover {
     background-color: rgba(52, 58, 64, 0.7);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-title {
     color: #fff;
     margin-bottom: 0.5rem;
}

.step-text {
    color: #ccc;
}

.step-icon-v2 i {
     text-shadow: 0 0 10px currentColor;
}

/* --- CTA Section V2 --- */
.cta-section-v2 {
    background: linear-gradient(rgba(var(--bs-primary-rgb), 0.1), rgba(0,0,0,0.6));
    border-top: 1px solid rgba(var(--bs-primary-rgb), 0.2);
}

.cta-title,
.cta-subtitle,
.cta-button {
     opacity: 0;
     transform: translateY(20px);
}

/* ========================================= */
/* === LANDING PAGE - BLUEPRINT THEME === */
/* ========================================= */

.landing-theme-blueprint {
    --blueprint-primary: #00e5ff; /* Glowing Cyan */
    --blueprint-secondary: #95a5a6;
    --blueprint-dark: #0d1117; /* Very dark blue/black */
    --blueprint-bg: #161b22;
    --blueprint-border: rgba(0, 229, 255, 0.2);
    --blueprint-glow: rgba(0, 229, 255, 0.4);
}

/* --- Hero Section --- */
.blueprint-hero {
    min-height: 100vh;
    background-color: var(--blueprint-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 6rem 0;
}

/* Subtle Animated Grid Background */
.blueprint-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(to right, var(--blueprint-border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--blueprint-border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    animation: blueprint-grid-anim 15s linear infinite;
    z-index: 1;
}

@keyframes blueprint-grid-anim {
    from { background-position: 0 0; }
    to { background-position: 40px 80px; }
}

.blueprint-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjust as needed */
}

.blueprint-hero__text {
    max-width: 600px;
}

.blueprint-hero__title {
    font-size: calc(2.2rem + 2.5vw); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 15px var(--blueprint-glow);
}

.blueprint-hero__title span {
    display: inline-block; /* For GSAP animation */
    opacity: 0;
    transform: translateY(30px);
}

.blueprint-hero__subtitle {
    font-size: calc(1rem + 0.5vw);
    color: var(--blueprint-secondary);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.blueprint-btn {
    border-radius: 4px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.blueprint-btn--primary {
    background-color: var(--blueprint-primary);
    border-color: var(--blueprint-primary);
    color: var(--blueprint-dark);
    box-shadow: 0 0 15px var(--blueprint-glow);
}

.blueprint-btn--primary:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--blueprint-dark);
    box-shadow: 0 0 25px var(--blueprint-glow);
    transform: translateY(-3px) scale(1.03);
}

.blueprint-btn--outline {
    border-color: var(--blueprint-primary);
    color: var(--blueprint-primary);
}

.blueprint-btn--outline:hover {
    background-color: var(--blueprint-primary);
    border-color: var(--blueprint-primary);
    color: var(--blueprint-dark);
    box-shadow: 0 0 15px var(--blueprint-glow);
     transform: translateY(-3px) scale(1.03);
}

.blueprint-hero__visual {
    /* Placeholder for potential visual elements */
    flex-shrink: 0;
    margin-left: 2rem;
    /* Example: */
    /* width: 300px; height: 300px; background: rgba(0, 229, 255, 0.1); border-radius: 50%; */
}

/* --- General Blueprint Section --- */
.blueprint-section {
    padding: 5rem 0;
    position: relative; /* For potential pseudo-elements */
}

.blueprint-section__title {
    text-align: center;
    font-size: calc(1.8rem + 1vw);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
}

.blueprint-section__subtitle {
     color: var(--blueprint-secondary);
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     opacity: 0;
     transform: translateY(20px);
}

.section-dark {
    background-color: var(--blueprint-bg);
}
.section-light-dark {
    background-color: var(--blueprint-dark);
}

/* --- Features Section --- */
.blueprint-feature__card {
    background-color: rgba(33, 37, 41, 0.6);
    border: 1px solid var(--blueprint-border);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bounce effect */
    height: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.blueprint-feature__card:hover {
    transform: translateY(-10px) scale(1);
    border-color: var(--blueprint-primary);
    box-shadow: 0 0 25px var(--blueprint-glow);
}

.blueprint-feature__icon {
    color: var(--blueprint-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.blueprint-feature__title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blueprint-feature__text {
    color: var(--blueprint-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- How It Works Section --- */
.blueprint-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3rem;
    position: relative;
}

.blueprint-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.blueprint-step__icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--blueprint-border);
    color: var(--blueprint-primary);
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.blueprint-step:hover .blueprint-step__icon {
    background-color: rgba(0, 229, 255, 0.2);
    border-color: var(--blueprint-primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--blueprint-glow);
}

.blueprint-step__title {
     color: #fff;
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
}

.blueprint-step__text {
     color: var(--blueprint-secondary);
     font-size: 0.9rem;
}

.blueprint-step__connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--blueprint-border);
    margin: 35px 0.5rem 0 0.5rem; /* Align with middle of icons */
    min-width: 50px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

/* Hide connector after the last step */
.blueprint-step:last-of-type + .blueprint-step__connector {
    display: none;
}

/* --- CTA Section --- */
.blueprint-cta {
     padding: 4rem 0;
     border-top: 1px solid var(--blueprint-border);
}

.blueprint-cta__title {
    font-size: calc(1.6rem + 1vw);
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}

.blueprint-cta__subtitle {
     color: var(--blueprint-secondary);
     margin-bottom: 2rem;
     opacity: 0;
     transform: translateY(20px);
}

.blueprint-btn--success {
     background-color: #198754;
     border-color: #198754;
     color: #fff;
     opacity: 0;
     transform: translateY(20px);
}

.blueprint-btn--success:hover {
     background-color: #157347;
     border-color: #146c43;
     color: #fff;
     box-shadow: 0 0 15px rgba(25, 135, 84, 0.5);
}

/* Remove old V2 styles if they exist */
#threejs-canvas-container, .hero-section-v2, .features-section-v2, .how-it-works-section-v2, .cta-section-v2 {
    display: none !important; /* Hide elements from previous attempt */
}

/* Responsive adjustments for How it Works */
@media (max-width: 991px) {
    .blueprint-steps {
        flex-direction: column;
        align-items: center;
    }
    .blueprint-step {
        margin-bottom: 2rem;
        max-width: 400px;
    }
    .blueprint-step__connector {
        transform: rotate(90deg) scaleY(0); /* Vertical */
        transform-origin: top;
        width: 2px;
        height: 30px; /* Adjust height */
        margin: 0.5rem 0;
        min-width: 2px;
    }
     .blueprint-step:last-of-type {
        margin-bottom: 0;
    }
     .blueprint-step:last-of-type + .blueprint-step__connector {
        display: none;
    }
}