/* Blog Filter Section */
.blog-filter-section { padding: 60px 0; }
.blog-filter-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; flex-direction: column; gap: 63px; }

.blog-filter-heading { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 40px; color: #ffffff; }

.blog-filter-buttons { display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; }
.blog-filter-buttons .filter-link { color: #ffffff; text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 26px; }
.blog-filter-buttons .filter-btn { background: none; border: 0; padding: 0; color: #ffffff; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 26px; cursor: pointer; }
.blog-filter-buttons .filter-btn.active, .blog-filter-buttons .filter-link.active { text-decoration: underline; }

.posts-carousel { position: relative; display: flex; align-items: center; gap: 16px; }
.posts-nav { position: static; width: 32px; height: 32px; background: transparent; color: #ffffff; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 28px; line-height: 1; border-radius: 0; opacity: 0.9; }
.posts-nav:hover { background: transparent; color: #7A8F7A; opacity: 1; }
.posts-nav:focus-visible { outline: 2px solid #7A8F7A; outline-offset: 2px; }

.posts-carousel-viewport { overflow: hidden; flex: 1 1 auto; }
.posts-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: 350px; gap: 16px; transition: transform .35s ease; }

.post-card { width: 350px; min-height: 350px; height: fit-content; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: #ffffff; background: rgba(0,0,0,0.35); padding: 12px; border-radius: 10px; }
.post-card-thumb { width: 100%; height: 224px; overflow: hidden; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-title { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; }
.post-card-empty { color: #fff; opacity: .8; }

@media (max-width: 768px) {
  .blog-filter-container { padding: 0 20px; gap: 20px; }
  .posts-carousel-track { grid-auto-columns: minmax(220px, 1fr); gap: 12px; }
  .posts-nav { width: 28px; height: 28px; font-size: 24px; }
}
/* Page Templates Styles */
.page-hero-section {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    text-align: center;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    max-width: 600px;
}

/* Navigation Buttons Container */
.page-nav-container {
    width: 100%;
    height: 162px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    padding: 0 20px;
}

.page-nav-btn {
    width: 250px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: 2px solid transparent;
}

.page-nav-btn span {
    color: #fff;
    font-weight: bold;
}

/* Default button style (outlined) */
.page-nav-btn {
    background: transparent;
    border: 2px solid #fff;
}

/* Active button style (filled) */
.page-nav-btn-active {
    background: #A68C5B;
    border: 2px solid #A68C5B;
}

/* Hover effects */
.page-nav-btn:hover {
    background: #A68C5B;
    border-color: #A68C5B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 140, 91, 0.3);
}

.page-nav-btn-active:hover {
    background: #B89A6B;
    border-color: #B89A6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 140, 91, 0.3);
}

/* Pricing Container */
.page-pricing-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: horizontal;
    justify-content: center;
    align-items: center;
    gap: 23px;
    padding-left: 210px;
    background: #000;
    padding-top: 40px;
    padding-bottom: 40px;
}

.pricing-option {
    width: fill;
    height: fit-content;
    display: flex;
    flex-direction: vertical;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    line-height: 1.2;
}

.pricing-price {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 54px;
    color: #fff;
    line-height: 1;
}

.pricing-btn {
    width: 153px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #3C5B49;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.pricing-btn:hover {
    background: #3C5B49;
    color: #fff;
    border-color: #3C5B49;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(60, 91, 73, 0.3);
}

.page-content-sections {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
}

.page-main-article {
    width: 100%;
}

.page-main-article .entry-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.page-main-article .entry-content h1,
.page-main-article .entry-content h2,
.page-main-article .entry-content h3,
.page-main-article .entry-content h4,
.page-main-article .entry-content h5,
.page-main-article .entry-content h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.page-main-article .entry-content h1 {
    font-size: 36px;
}

.page-main-article .entry-content h2 {
    font-size: 30px;
}

.page-main-article .entry-content h3 {
    font-size: 24px;
}

.page-main-article .entry-content p {
    margin-bottom: 20px;
}

.page-main-article .entry-content ul,
.page-main-article .entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-main-article .entry-content li {
    margin-bottom: 10px;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Page CTA Section */
.page-cta-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.page-cta-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.page-cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3C5B49;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-cta-btn:hover {
    background: #7A8F7A;
    color: #fff;
}

.page-cta-btn .call-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Page Templates */
@media (max-width: 768px) {
    .page-hero-section {
        height: 50vh;
    }

    .page-hero-container {
        padding: 0 30px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .page-hero-subtitle {
        font-size: 20px;
    }

    .page-nav-container {
        height: 120px;
        padding: 0 15px;
    }

    .page-nav-btn {
        width: 200px;
        height: 60px;
        font-size: 16px;
    }

    .page-pricing-container {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        gap: 30px;
    }

    .pricing-option {
        width: 100%;
        max-width: 400px;
    }

    .pricing-title {
        font-size: 20px;
    }

    .pricing-price {
        font-size: 42px;
    }

    .pricing-btn {
        width: 140px;
        height: 50px;
        font-size: 14px;
    }

    .page-content-sections {
        padding: 40px 30px;
    }

    .services-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 25px;
    }

    .page-cta-section {
        padding: 40px 30px;
    }

    .page-cta-section h3 {
        font-size: 28px;
    }

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

    .page-cta-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        height: 40vh;
    }

    .page-hero-container {
        padding: 0 20px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-subtitle {
        font-size: 18px;
    }

    .page-nav-container {
        height: 100px;
        padding: 0 10px;
        gap: 8px;
    }

    .page-nav-btn {
        width: 150px;
        height: 50px;
        font-size: 14px;
    }

    .page-pricing-container {
        padding-left: 15px;
        padding-right: 15px;
        gap: 20px;
    }

    .pricing-title {
        font-size: 18px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-btn {
        width: 120px;
        height: 45px;
        font-size: 12px;
    }

    .page-content-sections {
        padding: 30px 20px;
    }

    .service-item {
        padding: 20px;
    }

    .page-cta-section {
        padding: 30px 20px;
    }

    .page-cta-section h3 {
        font-size: 24px;
    }

    .page-cta-section p {
        font-size: 14px;
    }

    .page-cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
} 