/*
Theme Name: Freeway Infrastructure
Description: Professional WordPress theme for Freeway Infrastructure - Mining, Crushing, Transportation, and Contracting services
Version: 1.0
Author: Freeway Infrastructure
Text Domain: freeway-infrastructure
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a365d;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
}

.site-logo span {
    color: #f6ad55;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #f6ad55;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(45, 55, 72, 0.8)), 
                url('assets/images/hero-bg.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #f6ad55;
    color: #1a365d;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f7fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #f6ad55;
    font-size: 2rem;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
}

.service-card .service-description {
    color: #4a5568;
    line-height: 1.6;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* HTML Content Styles */
.about-text .about-content-1,
.about-text .about-content-2,
.about-text .about-content-3 {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.about-text .about-content-3 ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-text .about-content-3 li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.about-text .about-content-3 strong {
    color: #1a365d;
    font-weight: 700;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
    margin-top: 1rem;
}

.service-description strong {
    color: #1a365d;
    font-weight: 700;
}

.service-description ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.25rem;
    color: #4a5568;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: #f6ad55;
    font-weight: 700;
}

.section-title div {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-title div strong {
    color: #1a365d;
    font-weight: 700;
}

.footer-section div {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section div strong {
    color: #f6ad55;
    font-weight: 700;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #f6ad55;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f6ad55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #1a365d;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    color: #1a365d;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255,255,255,1);
    box-shadow: 0 0 0 2px rgba(246, 173, 85, 0.5);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    background: #f6ad55;
    color: #1a365d;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.submit-btn:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
}

/* Contact Form Messages */
.contact-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.contact-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Service Single Page */
.service-single {
    padding: 4rem 0;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-featured-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-details {
    text-align: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #f6ad55;
    font-size: 3rem;
}

.service-summary {
    margin-bottom: 2rem;
}

.service-excerpt {
    font-size: 1.2rem;
    color: #718096;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.service-full-content {
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.service-full-content h2,
.service-full-content h3,
.service-full-content h4 {
    color: #1a365d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-full-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-full-content ul,
.service-full-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-full-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-cta {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    margin-top: 3rem;
}

.service-cta h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-cta p {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-link {
    display: inline-block;
    background: #f6ad55;
    color: #1a365d;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
    text-decoration: none;
    color: #1a365d;
}

.related-services {
    padding: 4rem 0;
    background: #f7fafc;
}

.related-services h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Additional contact section improvements */
.contact-section * {
    color: inherit;
}

.contact-section .contact-info h4 {
    color: #f6ad55;
    font-weight: 600;
}

.contact-section .contact-info p {
    color: #fff;
    opacity: 0.95;
}

.contact-section .contact-form {
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-section .form-group label {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    color: #718096;
}

.contact-section .form-group select option {
    background: #fff;
    color: #1a365d;
}

/* Footer */
.site-footer {
    background: #2d3748;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f6ad55;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #f6ad55;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Elementor Compatibility */
.elementor-widget-container {
    font-family: inherit;
}

.elementor-heading-title {
    color: #1a365d;
}

.elementor-button {
    background: #f6ad55;
    color: #1a365d;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.elementor-button:hover {
    background: #ed8936;
    transform: translateY(-2px);
}

/* Page Templates */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    padding: 4rem 0 2rem;
    color: #fff;
    margin-top: 80px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-content {
    padding: 3rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-featured-image,
.post-featured-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-featured-image img,
.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Posts */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.entry-meta {
    color: #718096;
    font-size: 0.9rem;
}

.entry-meta span {
    margin-right: 1.5rem;
}

.entry-meta i {
    margin-right: 0.5rem;
    color: #f6ad55;
}

.entry-content {
    line-height: 1.8;
    color: #4a5568;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #1a365d;
    margin: 2rem 0 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.tags-links {
    color: #718096;
}

.tags-links i {
    margin-right: 0.5rem;
    color: #f6ad55;
}

.tags-links a {
    color: #f6ad55;
    text-decoration: none;
}

.tags-links a:hover {
    text-decoration: underline;
}

/* Post Navigation */
.post-navigation {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-links a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f6ad55;
}

/* Related Posts */
.related-posts {
    margin: 3rem 0;
}

.related-posts h3 {
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h4 {
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: #1a365d;
    text-decoration: none;
}

.related-post-content h4 a:hover {
    color: #f6ad55;
}

.related-post-meta {
    color: #718096;
    font-size: 0.9rem;
}

/* Search Results */
.search-result-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-result-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.search-result-content h2 {
    margin-bottom: 1rem;
}

.search-result-content h2 a {
    color: #1a365d;
    text-decoration: none;
}

.search-result-content h2 a:hover {
    color: #f6ad55;
}

.read-more {
    color: #f6ad55;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ed8936;
}

.read-more i {
    margin-left: 0.5rem;
}

/* Pagination */
.pagination {
    margin: 3rem 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    background: #fff;
    color: #1a365d;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #f6ad55;
    color: #1a365d;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-icon {
    font-size: 4rem;
    color: #f6ad55;
    margin-bottom: 2rem;
}

.error-404 .page-title {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.error-actions {
    margin: 2rem 0;
}

.error-actions .cta-button {
    margin: 0 1rem;
}

.error-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.suggestion-section h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.suggestion-section ul {
    list-style: none;
    padding: 0;
}

.suggestion-section li {
    margin-bottom: 0.5rem;
}

.suggestion-section a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.suggestion-section a:hover {
    color: #f6ad55;
}

/* Search Form */
.search-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px 0 0 5px;
    border-right: none;
    font-size: 1rem;
}

.search-field:focus {
    outline: none;
    border-color: #f6ad55;
}

.search-submit {
    padding: 0.75rem 1rem;
    background: #f6ad55;
    color: #1a365d;
    border: 2px solid #f6ad55;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #ed8936;
    border-color: #ed8936;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results-icon {
    font-size: 4rem;
    color: #f6ad55;
    margin-bottom: 2rem;
}

.no-results h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.search-again {
    margin: 2rem 0;
}

.suggestions {
    margin: 2rem 0;
    text-align: left;
}

.suggestions ul {
    list-style: disc;
    padding-left: 2rem;
}

.popular-content {
    margin: 2rem 0;
    text-align: left;
}

.popular-content ul {
    list-style: none;
    padding: 0;
}

.popular-content li {
    margin-bottom: 0.5rem;
}

.popular-content a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-content a:hover {
    color: #f6ad55;
}

/* Sidebar */
.widget-area {
    margin-left: 3rem;
}

.widget {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.widget-title {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #f6ad55;
}

/* Responsive Design for Templates */
@media (max-width: 768px) {
    .search-result-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .search-result-image {
        margin-bottom: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .error-suggestions {
        grid-template-columns: 1fr;
    }
    
    .widget-area {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
         .entry-title {
         font-size: 2rem;
     }
 }

/* Archive Templates */
.archive-post {
     display: grid;
     grid-template-columns: 200px 1fr;
     gap: 2rem;
     margin-bottom: 2rem;
     padding: 2rem;
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 }

.archive-post-image img {
     width: 100%;
     height: 150px;
     object-fit: cover;
     border-radius: 5px;
 }

.archive-description {
     color: #cbd5e0;
     font-size: 1.1rem;
     margin-top: 1rem;
 }

.no-posts {
     text-align: center;
     padding: 4rem 0;
 }

.no-posts-icon {
     font-size: 4rem;
     color: #f6ad55;
     margin-bottom: 2rem;
 }

.no-posts h2 {
     color: #1a365d;
     margin-bottom: 1.5rem;
 }

/* Services Templates */
.service-single {
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 }

.service-featured-image img {
     width: 100%;
     height: auto;
     display: block;
 }

.service-content {
     padding: 2rem;
 }

.service-summary {
     background: #f7fafc;
     padding: 1.5rem;
     border-radius: 5px;
     margin-bottom: 2rem;
     font-size: 1.1rem;
     color: #4a5568;
     border-left: 4px solid #f6ad55;
 }

.service-features {
     margin: 3rem 0;
 }

.features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
     margin-top: 2rem;
 }

.feature-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: #f7fafc;
     border-radius: 5px;
 }

.feature-item i {
     color: #f6ad55;
     font-size: 1.2rem;
 }

.service-cta {
     background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
     color: #fff;
     padding: 2rem;
     border-radius: 10px;
     text-align: center;
     margin-top: 3rem;
 }

.service-cta h3 {
     color: #fff;
     margin-bottom: 1rem;
 }

.service-link {
     color: #f6ad55;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

.service-link:hover {
     color: #ed8936;
 }

.service-icon-large {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, #1a365d, #2d3748);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     color: #f6ad55;
     font-size: 3rem;
 }

/* Projects Templates */
.project-single {
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 }

.project-featured-image img {
     width: 100%;
     height: auto;
     display: block;
 }

.project-content {
     padding: 2rem;
 }

.project-details {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     margin-top: 1rem;
 }

.project-details span {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: #cbd5e0;
 }

.project-details i {
     color: #f6ad55;
 }

.project-value {
     background: #f7fafc;
     padding: 1.5rem;
     border-radius: 5px;
     margin: 2rem 0;
     text-align: center;
 }

.value-amount {
     font-size: 1.5rem;
     font-weight: 700;
     color: #f6ad55;
     margin: 0;
 }

.project-gallery {
     margin: 3rem 0;
 }

.gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 1rem;
     margin-top: 1.5rem;
 }

.gallery-item img {
     width: 100%;
     height: 150px;
     object-fit: cover;
     border-radius: 5px;
     transition: transform 0.3s ease;
 }

.gallery-item:hover img {
     transform: scale(1.05);
 }

.project-testimonial {
     background: #f7fafc;
     padding: 2rem;
     border-radius: 10px;
     margin: 3rem 0;
     border-left: 4px solid #f6ad55;
 }

.project-testimonial blockquote {
     margin: 0;
     font-style: italic;
     color: #4a5568;
 }

.project-testimonial cite {
     display: block;
     margin-top: 1rem;
     font-weight: 600;
     color: #1a365d;
 }

.project-cta {
     background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
     color: #fff;
     padding: 2rem;
     border-radius: 10px;
     text-align: center;
     margin-top: 3rem;
 }

.project-cta h3 {
     color: #fff;
     margin-bottom: 1rem;
 }

.project-link {
     color: #f6ad55;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

.project-link:hover {
     color: #ed8936;
 }

/* Services Archive */
.services-overview {
     margin: 4rem 0;
     text-align: center;
 }

.overview-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

.overview-item {
     background: #fff;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
 }

.overview-item:hover {
     transform: translateY(-5px);
 }

.overview-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #1a365d, #2d3748);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     color: #f6ad55;
     font-size: 2rem;
 }

.services-cta,
.projects-cta {
     background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
     color: #fff;
     padding: 3rem 2rem;
     border-radius: 10px;
     text-align: center;
     margin: 4rem 0;
 }

.services-cta h2,
.projects-cta h2 {
     color: #fff;
     margin-bottom: 1rem;
 }

.cta-buttons {
     margin-top: 2rem;
 }

.cta-buttons .cta-button {
     margin: 0 1rem;
 }

.cta-button.secondary {
     background: transparent;
     color: #fff;
     border: 2px solid #f6ad55;
 }

.cta-button.secondary:hover {
     background: #f6ad55;
     color: #1a365d;
 }

/* Projects Stats */
.projects-stats {
     margin: 4rem 0;
     text-align: center;
 }

.stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

.stat-item {
     background: #fff;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 }

.stat-number {
     font-size: 3rem;
     font-weight: 800;
     color: #f6ad55;
     margin-bottom: 0.5rem;
 }

.stat-label {
     color: #4a5568;
     font-weight: 500;
 }

/* Related Sections */
.related-services,
.related-projects {
     margin: 4rem 0;
 }

.related-services h3,
.related-projects h3 {
     text-align: center;
     margin-bottom: 3rem;
     color: #1a365d;
 }

.projects-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

/* No Content States */
.no-services,
.no-projects {
     text-align: center;
     padding: 4rem 0;
 }

.no-services-icon,
.no-projects-icon {
     font-size: 4rem;
     color: #f6ad55;
     margin-bottom: 2rem;
 }

.no-services h2,
.no-projects h2 {
     color: #1a365d;
     margin-bottom: 1.5rem;
 }

/* Responsive Design for New Templates */
@media (max-width: 768px) {
     .archive-post {
         grid-template-columns: 1fr;
         text-align: center;
     }
     
     .archive-post-image {
         margin-bottom: 1rem;
     }
     
     .project-details {
         flex-direction: column;
         gap: 1rem;
     }
     
     .features-grid {
         grid-template-columns: 1fr;
     }
     
     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
     }
     
     .overview-grid {
         grid-template-columns: 1fr;
     }
     
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }
     
     .projects-grid {
         grid-template-columns: 1fr;
     }
     
     .cta-buttons .cta-button {
         display: block;
         margin: 1rem 0;
     }
 } 