.elementor-1535 .elementor-element.elementor-element-2502945{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:120px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-9f725bf *//* ===================================
   AeroSpect NY Blog - Global Styles
   =================================== */

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #0066cc;
    --accent-color: #00a8ff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --highlight-color: #ffd700;
    --success-color: #28a745;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 3rem;
    --spacing-xlarge: 4rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.l-canvas {
    width: 100%;
    overflow-x: hidden;
}

.l-main {
    width: 100%;
}

.l-section {
    width: 100%;
    position: relative;
}

.l-section-h {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.i-cf::after {
    content: "";
    display: table;
    clear: both;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--bg-white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.aerospectny.com/wp-content/uploads/2025/03/aero1-1024x576.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    position: relative;
    z-index: 10;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--accent-color);
}

/* ===================================
   Content Section
   =================================== */

.content-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   Blog Content
   =================================== */

.blog-content {
    max-width: 100%;
}

.featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.blog-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.blog-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    line-height: 1.4;
}

.blog-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.blog-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.blog-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   Highlight Boxes
   =================================== */

.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: var(--border-radius);
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
    color: var(--primary-color);
}

.highlight-box ul {
    list-style: none;
    margin: 0;
}

.highlight-box li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.highlight-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   Stats Grid
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   Blockquote
   =================================== */

blockquote {
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

blockquote::before {
    content: """;
    font-size: 4rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

/* ===================================
   Process Steps
   =================================== */

.process-steps {
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-small);
}

.step-content h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-small);
    border-left-color: var(--accent-color);
}

.faq-item h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
}

/* ===================================
   CTA Box
   =================================== */

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.cta-box h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin: 0 0 1rem 0;
}

.cta-box p {
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

/* ===================================
   Related Services
   =================================== */

.related-services {
    margin: 4rem 0 3rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.related-services h3 {
    margin: 0 0 2rem 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow-small);
}

.service-link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
    color: var(--accent-color);
}

.service-link i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.service-link span {
    font-weight: 600;
    font-size: 1rem;
}

/* ===================================
   Author Bio
   =================================== */

.author-bio {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.author-bio h4 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-bio p {
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.learn-more::after {
    content: "→";
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent-color);
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* ===================================
   Sidebar
   =================================== */

.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    color: var(--primary-color);
}

.quick-facts {
    list-style: none;
    margin: 0;
}

.quick-facts li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.quick-facts i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.location-list,
.resource-list {
    list-style: none;
    margin: 0;
}

.location-list li,
.resource-list li {
    margin-bottom: 0.75rem;
}

.location-list a,
.resource-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-list a::before {
    content: "📍";
}

.resource-list a::before {
    content: "→";
    color: var(--accent-color);
    font-weight: bold;
}

.location-list a:hover,
.resource-list a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
}

.cta-widget h3,
.cta-widget p {
    color: var(--bg-white);
}

.cta-widget p {
    margin: 0 0 1.5rem 0;
}

.sidebar-cta-button {
    display: block;
    text-align: center;
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-cta-button:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

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

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .l-section-h {
        padding: 0 1.5rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .post-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .blog-content h2 {
        font-size: 1.75rem;
        margin: 2.5rem 0 1.25rem;
    }

    .blog-content h3 {
        font-size: 1.35rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .highlight-box,
    .faq-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .service-links {
        grid-template-columns: 1fr;
    }

    blockquote {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* ===================================
   Animations
   =================================== */

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

.blog-content > * {
    animation: fadeIn 0.6s ease-out;
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .sidebar,
    .cta-box,
    .related-services {
        display: none;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 12pt;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }

    h3 {
        font-size: 14pt;
    }
}

/* ===================================
   Accessibility Enhancements
   =================================== */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-color: #000000;
        --border-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #ffffff;
        --text-color: #e0e0e0;
        --text-light: #b0b0b0;
        --bg-white: #1a1a1a;
        --bg-light: #2d2d2d;
        --border-color: #404040;
    }

    .hero-section {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    }
}/* End custom CSS */