/* ========================================
   Blueprint Consulting Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-navy: #0A2540;
    --primary-cyan: #00D4FF;
    --dark-blue: #051829;
    --light-cyan: #33E0FF;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/blueprint-background.png') center/cover;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header/Navigation
   ======================================== */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
}

.logo h2 {
    color: var(--primary-navy);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-cyan);
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-link,
.email-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: var(--primary-cyan);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.75) 0%, rgba(5, 24, 41, 0.75) 100%), 
                url('../images/hero-adu.jpg') center/cover;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::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="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--primary-cyan);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.badge i {
    color: var(--primary-cyan);
    font-size: 26px;
}

.badge span {
    font-weight: 600;
    font-size: 15px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0099CC 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 20px;
}

.trust-text {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-text i {
    color: var(--primary-cyan);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0099CC 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   ADU Showcase Section
   ======================================== */
.adu-showcase {
    padding: 80px 0;
    background: white;
}

.showcase-grid-square {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.98), rgba(10, 37, 64, 0.85));
    padding: 20px;
    color: white;
    transition: all 0.4s ease;
}

/* Collapsed state - show only header */
.showcase-overlay.collapsed {
    padding: 18px 20px;
}

.showcase-overlay.collapsed .showcase-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* Expanded state on hover */
.showcase-item:hover .showcase-overlay.collapsed .showcase-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.showcase-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-overlay h4 i {
    color: var(--primary-cyan);
    font-size: 20px;
    width: 24px;
    text-align: center;
    opacity: 0.9;
}

.primary-stat {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin: 0;
    white-space: nowrap;
}

.showcase-details {
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.showcase-specs {
    display: grid;
    gap: 8px;
}

.showcase-specs p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-specs i {
    color: var(--primary-cyan);
    font-size: 13px;
    width: 16px;
}

.spec-income {
    font-weight: 600;
}

.spec-roi {
    font-weight: 600;
}

.showcase-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.showcase-cta p {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.showcase-cta strong {
    color: var(--primary-navy);
}

/* ========================================
   Form Section
   ======================================== */
.form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    background: var(--primary-cyan);
    height: 100%;
    width: 25%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-cyan);
}

.lead-form {
    padding: 40px 30px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

.form-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 30px;
    text-align: center;
}

.form-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.button-group {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.option-button {
    background: white;
    border: 2px solid var(--border-color);
    padding: 20px 18px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.option-button i {
    font-size: 26px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.option-button span {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-navy);
    display: block;
}

.option-button small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.option-button:hover {
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(5px);
}

.option-button:active {
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.15);
    transform: scale(0.98);
}

.option-button.selected {
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-size: 15px;
}

.input-group label i {
    color: var(--primary-cyan);
    margin-right: 5px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.consent-group input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-group label {
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0099CC 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.back-button {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.privacy-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.privacy-text i {
    color: var(--success-green);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-blue) 100%);
    color: white;
    border-color: var(--primary-cyan);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-cyan);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0099CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-card.featured .service-icon {
    background: white;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card.featured .service-icon i {
    color: var(--primary-cyan);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-top: auto;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reason-card {
    background: white;
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.reason-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0099CC 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 30px;
    color: white;
}

.reason-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.reason-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-blue) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.stats-banner .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stats-banner .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-banner .stat-icon i {
    font-size: 24px;
    color: var(--primary-cyan);
}

.stats-banner .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-banner .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* Remove old social proof styles */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-blue) 100%);
    color: white;
}

.social-proof .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-icon i {
    font-size: 24px;
    color: var(--primary-cyan);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--primary-cyan);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
}

.faq-question i {
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0099CC 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta .cta-button {
    background: white;
    color: var(--primary-cyan);
}

.final-cta .cta-button:hover {
    background: var(--primary-navy);
    color: white;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    color: var(--primary-cyan);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-cyan);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li i {
    color: var(--primary-cyan);
    margin-right: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-cyan);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-badge {
    background: rgba(0, 212, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-badge i {
    color: var(--primary-cyan);
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-cyan);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Loading Overlay
   ======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.3);
    border-top-color: var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay p {
    color: white;
    margin-top: 20px;
    font-size: 16px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .badge {
        justify-content: center;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }

    .cta-button.large {
        padding: 18px 36px;
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid-square {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .stats-banner .stat-item {
        justify-content: flex-start;
    }

    .form-header {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 26px;
    }

    .lead-form {
        padding: 30px 20px;
    }

    .option-button {
        padding: 18px 16px;
    }

    .option-button span {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .logo-image {
        height: 50px;
    }

    .logo h2 {
        font-size: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Smooth scroll for anchor links */
html {
    scroll-padding-top: 80px;
}