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

:root {
    --primary-color: #0E415B;
    --primary-dark: #082838;
    --action-color: #F27D19;
    --secondary-color: #35b0c7;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #FAF9F4;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3 {
    text-transform: uppercase;
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.hero .container {
    margin-left: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 20px;
    gap: 1.5rem;
}

.btn-cta-nav {
    background-color: var(--action-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    order: 3;
    margin-left: auto;
    flex: 0 0 auto;
}

.nav-phone-link {
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-phone-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-light);
}

.btn-cta-nav:hover {
    background-color: #d96d14;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-brand {
    order: 1;
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin-right: 2rem;
}

.nav-brand .logo {
    max-height: 180px;
    width: auto;
    margin-bottom: -60px;
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    order: 4;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    order: 2;
    flex: 1;
    justify-content: center;
    margin: 0 1rem;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 18px;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 6rem 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 65, 91, 0.95) 0%, rgba(14, 65, 91, 0.55) 55%, rgba(8, 40, 56, 0.25) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoom 15s ease-out forwards;
    transform: scale(1);
    transform-origin: center;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    width: 100%;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--action-color);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #d96d14;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2a8fa1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: var(--action-color);
    color: var(--white);
    border-radius: 50px;
    border: none;
    font-weight: 600;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    animation: fadeIn 0.8s ease-out;
}

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

.property-types .features-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.property-types h2 {
    text-transform: none;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out;
}


.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--action-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
}

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

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-preview p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem;
    max-width: 820px;
}

.services-preview .btn-primary {
    background-color: var(--white);
    color: var(--primary-dark);
}

.services-preview .btn-primary:hover {
    background-color: #f7f7f7;
}

.services-preview .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.services-preview .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.services-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.property-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.services-highlights ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.services-highlights li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    min-height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
    color: var(--white);
    font-weight: 600;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-label {
    font-size: 1rem;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 0;
}

.about-image {
    display: flex;
    align-items: flex-start;
}

.founder-photo {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    max-height: 420px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.credentials {
    margin-top: 3rem;
}

.credentials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.credential-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.credential-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.credential-card p {
    color: var(--text-light);
}

/* Inspections Page */
.inspections-content {
    padding: 5rem 0;
}

.inspection-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.inspection-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.inspection-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.inspection-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.inspection-category {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.inspection-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.inspection-category ul {
    list-style: none;
    padding-left: 0;
}

.inspection-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.inspection-category li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.inspection-category.special {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.inspection-category.special h3 {
    color: var(--white);
}

.inspection-category.special p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.inspection-category.special li {
    color: var(--white);
    opacity: 0.9;
}

.inspection-category.special li:before {
    color: var(--white);
}

.report-info {
    margin-top: 4rem;
    text-align: center;
}

.report-preview {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.report-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.report-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.report-feature {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 180px;
}

.report-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.report-feature p {
    color: var(--text-light);
    margin: 0;
}

.checkmark-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--action-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.report-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.report-content {
    text-align: left;
}

.report-visual {
    width: 100%;
    text-align: center;
}

.report-mockup {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 0.75rem;
    box-shadow: none;
    object-fit: contain;
    display: block;
}

.report-visual .report-cta {
    margin-top: 1.5rem;
    justify-content: center;
}

.report-note {
    margin-top: 1rem;
    color: var(--text-light);
    text-align: center;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-method p {
    color: var(--text-dark);
    font-size: 1.125rem;
}

.contact-method a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method .small {
    font-size: 0.875rem;
    color: var(--text-light);
}

.quick-schedule {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.quick-schedule h3 {
    margin-bottom: 0.5rem;
}

.quick-schedule p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Forms */
.contact-form-section h2,
.schedule-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form,
.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

.faq-preview {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.faq-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

/* Schedule Page */
.schedule-content {
    padding: 5rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.schedule-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
}

.pricing-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
}

.pricing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-info ul {
    list-style: none;
    margin: 1rem 0;
}

.pricing-info li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-info li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-note {
    font-style: italic;
    font-size: 0.875rem;
}

.contact-alternative {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.contact-alternative h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-alternative p {
    opacity: 0.9;
}

.phone-large {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.phone-large a {
    color: var(--white);
    text-decoration: none;
}

.trust-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
}

.trust-stat {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.trust-stat svg {
    width: 100%;
    height: 100%;
}

.trust-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Blog Page */
.blog-content {
    padding: 5rem 0;
    min-height: 400px;
}

.loading-message {
    text-align: center;
    padding: 5rem 0;
}

.spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 5rem 0;
    color: var(--text-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}


.blog-post-image {
    width: 100%;
    height: 200px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.blog-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-icon svg {
    width: 100%;
    height: 100%;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.blog-post-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-post-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-post-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-post-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 0;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.footer-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-icon svg {
    width: 100%;
    height: 100%;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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


/* Single Post Page */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.single-post-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.single-post-content ul, 
.single-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

/* Property Placeholders */
.property-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: var(--border-color);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.7);
}

.property-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

/* Zoom-in Animation */
.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* CCPIA Section */
.ccpia-section {
    overflow: hidden;
    padding: 5rem clamp(1.5rem, 4vw, 4rem);
    color: var(--white);
    background-image: linear-gradient(135deg, rgba(14, 65, 91, 0.6), rgba(8, 40, 56, 0.6)), url('/assets/com.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ccpia-badge {
    width: clamp(200px, 25vw, 280px);
    max-height: 280px;
}

.ccpia-text {
    max-width: 720px;
}

.ccpia-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.ccpia-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-grid .footer-column {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.footer-grid .footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-grid .footer-column p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.footer-bottom p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-bottom a {
    font-weight: bold;
    text-decoration: none;
}

/* Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
    will-change: opacity;
}

.animate-fade-in.is-visible {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .property-types .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 60px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero .container {
        padding: 0;
    }
    .container {
        padding: 0 60px;
    }
    
    /* Navigation Mobile Layout */
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-brand {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .nav-brand .logo {
        margin-bottom: -30px;
        max-height: 140px;
    }

    .nav-cta-container {
        order: 2;
        width: 100%;
        margin: 1rem 0 0;
    }

    .btn-cta-nav {
        width: auto;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin: 1rem auto 0;
        width: auto;
        justify-content: center;
    }

    .nav-menu {
        display: flex;
        order: 4;
        flex-basis: 100%;
        flex-direction: column;
        gap: 1rem;
        background-color: var(--white);
        box-shadow: none;
        
        /* Mobile Menu Animation */
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 0;
        visibility: hidden;
        transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease, margin 0.4s ease, visibility 0.4s;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        padding: 1rem 0;
        margin-top: 1rem;
        visibility: visible;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .features h2,
    .services-preview h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .inspection-categories {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .ccpia-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .ccpia-badge {
        margin-bottom: 1rem;
    }

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

    .property-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 40px;
    }
    .hero .container {
        padding: 0;
    }
    .container {
        padding: 0 40px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .nav-menu li {
        font-size: 0.8rem;
    }

    .nav-menu .btn-cta {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .features-grid,
    .services-highlights ul {
        grid-template-columns: 1fr;
    }
}
