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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #00bcd4;
    color: #00bcd4;
}

.btn-outline:hover {
    background-color: #00bcd4;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #00bcd4;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.language-switcher {
    margin-right: 20px;
}

.lang {
    font-weight: 500;
    color: #333;
}

.lang.active {
    color: #00bcd4;
}

.social-icons {
    display: flex;
    margin-right: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 10px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    cursor: pointer;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background-color: #fff;
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    font-size: 2rem;
}

.solution-title {
    margin-bottom: 15px;
}

/* Works Section */
.works-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    margin: 0 10px 10px;
    background-color: transparent;
    border: 2px solid #ddd;
    border-radius: 30px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #00bcd4;
    color: #00bcd4;
}

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

.work-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.work-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 188, 212, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-title {
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.work-category {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.work-link {
    padding: 10px 25px;
    background-color: #fff;
    color: #00bcd4;
    border-radius: 30px;
    font-weight: 500;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-link {
    color: #00bcd4;
    font-weight: 500;
}

/* Brief Form Section */
.brief {
    background-color: #f9f9f9;
}

.brief-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bcd4;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-message {
    font-weight: 500;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #f44336;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    font-size: 1.2rem;
}

.contact-details h3 {
    margin-bottom: 5px;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #00bcd4;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: #00bcd4;
}

.footer-social {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

.footer-social h4 {
    margin-bottom: 20px;
    color: #00bcd4;
}

.footer-social .social-icons {
    justify-content: flex-end;
}

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 188, 212, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #00bcd4;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin: 30px 0;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .footer-social .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .back-to-top {
        right: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .brief-form-container {
        padding: 30px 20px;
    }
    
    .works-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}
/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a:hover {
    color: #fff;
}

/* About Page Styles */
.about-page-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about-page-text {
    flex: 1;
}

.about-page-image {
    flex: 1;
}

.about-page-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    font-size: 1.8rem;
}

.value-title {
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px 20px;
}

.member-name {
    margin-bottom: 5px;
}

.member-position {
    color: #666;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: #00bcd4;
    color: #fff;
}

/* CTA Section */
.cta-section {
    background-color: #00bcd4;
    color: #fff;
    text-align: center;
}

.cta-title {
    color: #fff;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-section .btn-outline:hover {
    background-color: #fff;
    color: #00bcd4;
}

/* Solutions Detail Section */
.solution-detail {
    padding: 100px 0;
}

.solution-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.solution-detail-content.reverse {
    flex-direction: row-reverse;
}

.solution-detail-text {
    flex: 1;
}

.solution-detail-text h2 {
    margin-bottom: 20px;
}

.solution-detail-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.solution-detail-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.solution-detail-text li {
    margin-bottom: 10px;
}

.solution-detail-image {
    flex: 1;
}

.solution-detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-page-content {
    display: flex;
    gap: 50px;
}

.contact-page-info {
    flex: 1;
}

.contact-page-form {
    flex: 1;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    font-size: 1.2rem;
}

.contact-info-details h3 {
    margin-bottom: 5px;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    margin-bottom: 15px;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 450px;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: #00bcd4;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 30px 20px;
    margin: 0;
}

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

/* Works Page Styles */
.works-page {
    padding-top: 60px;
}

/* Work Detail Page Styles */
.work-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.work-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.work-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.work-breadcrumb {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.work-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.work-breadcrumb a:hover {
    color: #fff;
}

.work-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.work-details-content {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

.work-details-info {
    flex: 1;
}

.work-info-item {
    margin-bottom: 30px;
}

.work-info-item h3 {
    margin-bottom: 10px;
    color: #00bcd4;
}

.work-share {
    display: flex;
    gap: 15px;
}

.work-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    transition: all 0.3s ease;
}

.work-share a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.work-details-description {
    flex: 2;
}

.work-details-description h2 {
    margin-bottom: 20px;
}

.work-details-description p {
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Related Works Section */
.related-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-work-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-work-image {
    height: 250px;
    overflow: hidden;
}

.related-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 188, 212, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-work-item:hover .related-work-overlay {
    opacity: 1;
}

.related-work-item:hover .related-work-image img {
    transform: scale(1.1);
}

.related-work-title {
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.related-work-category {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.related-work-link {
    padding: 10px 25px;
    background-color: #fff;
    color: #00bcd4;
    border-radius: 30px;
    font-weight: 500;
}

/* Project Navigation */
.project-navigation {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.project-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-nav-prev,
.project-nav-next {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-weight: 500;
}

.project-nav-prev i,
.project-nav-next i {
    font-size: 1.2rem;
    color: #00bcd4;
}

.project-nav-info span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.project-nav-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00bcd4;
    color: #fff;
    font-size: 1.2rem;
}

/* ==========================================================================
   Blog Page Styles (Updated and Adapted)
   ========================================================================== */

.blog-page-content {
    display: flex;
    gap: 50px;
}

/* --- Blog Post List --- */
.blog-posts {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espacio entre las tarjetas de posts */
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
}

.blog-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-post-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.blog-post-title {
    margin-bottom: 15px;
    font-size: 1.5rem; /* Tamaño de título ajustado para la tarjeta */
}

.blog-post-excerpt {
    margin-bottom: 20px;
    flex-grow: 1;
    color: #555;
}

.blog-post-link {
    color: #00bcd4;
    font-weight: 500;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: #00a8b9;
    text-decoration: underline;
}

/* --- Blog Pagination --- */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f9f9f9;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-link:hover,
.pagination-link.active {
    background-color: #00bcd4;
    color: #fff;
}

/* --- Single Post View (NEW) --- */
.single-post-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.single-post-content .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #777;
    font-size: 0.9rem;
}

.single-post-content .post-meta .blog-post-author {
    font-weight: 500;
}

.post-body {
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50; /* Un color más oscuro para los encabezados dentro del contenido */
    font-size: 1.8rem;
}

.post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-size: 1.5rem;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-body blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 4px solid #00bcd4;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
}

.post-body code {
    background-color: #f4f4f4;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.post-body pre {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* --- Post Navigation --- */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.post-navigation a {
    color: #00bcd4;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: #00a8b9;
    text-decoration: underline;
}

/* --- Blog Sidebar (Existing, reviewed) --- */
.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00bcd4;
    font-size: 1.2rem;
    color: #2c3e50;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    padding: 10px 15px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #00a8b9;
}

.sidebar-categories li {
    margin-bottom: 10px;
}

.sidebar-categories a {
    color: #333;
    transition: color 0.3s ease;
}

.sidebar-categories a:hover {
    color: #00bcd4;
}

.sidebar-recent-posts li {
    margin-bottom: 20px;
}

.sidebar-recent-posts a {
    display: flex;
    gap: 15px;
    color: #333;
}

.sidebar-recent-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-post-info h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.recent-post-info time {
    font-size: 0.8rem;
    color: #666;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-tags a {
    padding: 5px 15px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.sidebar-tags a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.sidebar-cta {
    background-color: #00bcd4;
    color: #fff;
    text-align: center;
}

.sidebar-cta .sidebar-title {
    border-bottom-color: #fff;
    color: #fff;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn-outline {
    border-color: #fff;
    color: #fff;
}

.newsletter-form .btn-outline:hover {
    background-color: #fff;
    color: #00bcd4;
}

/* --- Responsive Styles for Blog --- */
@media (max-width: 992px) {
    .blog-page-content {
        flex-direction: column;
    }
    
    .blog-posts {
        order: 2; /* Mueve los posts abajo en móvil */
    }
    
    .blog-sidebar {
        order: 1; /* Mueve la sidebar arriba en móvil */
    }
}

@media (max-width: 768px) {
    .blog-post-card {
        margin-bottom: 30px;
    }
    
    .single-post-content {
        padding: 20px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* Blog Sidebar */
.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00bcd4;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    padding: 10px 15px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.sidebar-categories li {
    margin-bottom: 10px;
}

.sidebar-categories a {
    color: #333;
    transition: color 0.3s ease;
}

.sidebar-categories a:hover {
    color: #00bcd4;
}

.sidebar-recent-posts li {
    margin-bottom: 20px;
}

.sidebar-recent-posts a {
    display: flex;
    gap: 15px;
    color: #333;
}

.sidebar-recent-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-post-info h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.recent-post-info span {
    font-size: 0.8rem;
    color: #666;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-tags a {
    padding: 5px 15px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.sidebar-tags a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.sidebar-cta {
    background-color: #00bcd4;
    color: #fff;
    text-align: center;
}

.sidebar-cta .sidebar-title {
    border-bottom-color: #fff;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn-outline {
    border-color: #fff;
    color: #fff;
}

.newsletter-form .btn-outline:hover {
    background-color: #fff;
    color: #00bcd4;
}

/* Post Detail Page Styles */
.post-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.post-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.post-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.post-hero-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.post-content-wrapper {
    display: flex;
    gap: 50px;
}

.post-body {
    flex: 2;
}

.post-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.post-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-body code {
    background-color: #f9f9f9;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-tags h3,
.post-share h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f9f9f9;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #333;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    transition: all 0.3s ease;
}

.post-share a:hover {
    background-color: #00bcd4;
    color: #fff;
}

/* Post Sidebar */
.post-sidebar {
    flex: 1;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #333;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #00bcd4;
}

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

.author-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 10px;
}

.author-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.sidebar-related-posts li {
    margin-bottom: 20px;
}

.sidebar-related-posts a {
    display: flex;
    gap: 15px;
    color: #333;
}

.sidebar-related-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.related-post-info h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.related-post-info span {
    font-size: 0.8rem;
    color: #666;
}

/* Comments Section */
.comments-list {
    margin-bottom: 50px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author {
    margin: 0;
    font-size: 1.1rem;
}

.comment-date {
    font-size: 0.9rem;
    color: #666;
}

.comment-text {
    margin-bottom: 15px;
}

.comment-reply {
    color: #00bcd4;
    font-weight: 500;
}

.comment-form-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.comment-form-container h3 {
    margin-bottom: 20px;
}

/* Post Navigation */
.post-navigation {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.post-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-nav-prev,
.post-nav-next {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-weight: 500;
}

.post-nav-prev i,
.post-nav-next i {
    font-size: 1.2rem;
    color: #00bcd4;
}

.post-nav-info span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.post-nav-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00bcd4;
    color: #fff;
    font-size: 1.2rem;
}

/* Legal Page Styles */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-footer {
    margin-top: 50px;
    text-align: center;
}

/* Responsive Styles for New Elements */
@media (max-width: 992px) {
    .about-page-content,
    .contact-page-content,
    .work-details-content,
    .blog-page-content,
    .post-content-wrapper {
        flex-direction: column;
    }
    
    .solution-detail-content.reverse {
        flex-direction: column;
    }
    
    .project-nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .page-hero-title,
    .work-hero-title,
    .post-hero-title {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .team-grid,
    .related-works-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-nav-prev,
    .project-nav-next {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        align-self: flex-start;
    }
}
/* ==========================================================================
   Login Page Styles
   ========================================================================== */

.login-page {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.login-container .form-group {
    margin-bottom: 20px;
}

.login-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-container .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-container .btn {
    width: 100%;
    padding: 12px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.login-container .btn:hover {
    background-color: #00a8b9;
}
/* ==========================================================================
   Modal Styles
   ========================================================================== */

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
    font-family: 'Poppins', sans-serif;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 0;
    border: none;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal-header {
    padding: 20px 30px;
    background-color: #00bcd4;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #f1f1f1;
}

.modal-body {
    padding: 30px;
}

/* Form styles inside modal (can reuse existing ones) */
.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-body .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.modal-body .btn {
    width: 100%;
    padding: 12px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-body .btn:hover {
    background-color: #00a8b9;
}
/* ==========================================================================
   Admin Panel Styles
   ========================================================================== */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background-color: #2c3e50;
    color: white;
    padding-top: 20px;
    flex-shrink: 0; /* Evita que el sidebar se encoja */
}

.admin-sidebar h3 {
    text-align: center;
    padding: 0 15px 20px;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.admin-sidebar ul {
    list-style: none;
    padding: 0;
}

.admin-sidebar li a {
    display: block;
    padding: 15px 20px;
    color: #ecf0f1;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.admin-sidebar li a:hover,
.admin-sidebar li a.active {
    background-color: #3498db;
}

.admin-content {
    flex: 1;
    padding: 30px;
    background-color: #f4f7f6;
    overflow-y: auto; /* Permite hacer scroll si el contenido es muy largo */
}

.admin-main-content {
    max-width: 900px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    margin: 0;
    color: #2c3e50;
}

.admin-header .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
}

.admin-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.admin-section h2 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 10px;
    font-size: 1.8rem;
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.btn {
    padding: 10px 20px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #00a8b9;
}

.btn-danger {
    background-color: #e74c3c;
}

.btn-danger:hover {
    background-color: #c0392b;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #555;
}

tr:hover {
    background-color: #f8f9fa;
}

.actions a {
    margin-right: 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
}

.actions a:hover {
    text-decoration: underline;
}

/* Message Styles */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Stats Grid for Dashboard */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card h3 {
    margin-top: 0;
    color: #555;
    font-size: 1rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00bcd4;
    margin: 10px 0;
}
/* ==========================================================================
   Brief Form Styles
   ========================================================================== */

.brief-standalone {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.brief-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brief-form-container .section-header {
    margin-bottom: 40px;
}

.brief-form-container .section-title {
    color: #111;
    margin-bottom: 10px;
}

.brief-form-container .section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.brief-form-container .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
}

.brief-form-container .form-group {
    margin-bottom: 25px;
    flex: 1;
}

.brief-form-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.brief-form-container .form-group input,
.brief-form-container .form-group select,
.brief-form-container .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.brief-form-container .form-group input:focus,
.brief-form-container .form-group select:focus,
.brief-form-container .form-group textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

.brief-form-container .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.brief-form-container .checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.brief-form-container .form-actions {
    text-align: center;
    margin-top: 30px;
}

.brief-form-container .btn-outline {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
}

.brief-form-container .alert {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-weight: 500;
}

.brief-form-container .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.brief-form-container .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive adjustments for brief form */
@media (max-width: 768px) {
    .brief-form-container {
        padding: 30px 20px;
    }
    
    .brief-form-container .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================================================
   Works Page Specific Styles - Brief Form and Newsletter
   ========================================================================== */

/* --- Brief Form Styles --- */
.brief-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.brief-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.brief-form .form-group {
    margin-bottom: 25px;
}

.brief-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #2c3e50;
}

.brief-form input, 
.brief-form select, 
.brief-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.brief-form input:focus, 
.brief-form select:focus, 
.brief-form textarea:focus {
    border-color: #00bcd4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.brief-form .form-row {
    display: flex;
    gap: 20px;
}

.brief-form .form-row .form-group {
    flex: 1;
}

.brief-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.brief-form .checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.brief-form .btn-submit {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.brief-form .btn-submit:hover {
    background: #00a8b9;
}

.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.required {
    color: #e74c3c;
}

/* --- Newsletter Section Styles --- */
.newsletter-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #00a8b9;
}

/* --- Responsive Styles for Works Page --- */
@media (max-width: 768px) {
    .brief-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .brief-form {
        padding: 25px;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-form button {
        width: 100%;
    }
}

/* ==========================================================================
   FIX PARA VISIBILIDAD DE ICONOS FONT AWESOME
   ========================================================================== */

/* Asegura que todos los iconos usen la fuente correcta */
i.fas, i.far, i.fab, i.fal, i.fad, i.fass, i.fasr {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900; /* Para los iconos 'fas' (solid) */
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ajuste específico para los iconos de marca (fab) que usan un peso diferente */
i.fab {
    font-weight: 400; /* Para los iconos 'fab' (brands) */
}

/* Asegura que los contenedores de los iconos no los oculten */
.social-icons i,
.header-actions i,
.admin-link i {
    display: inline-block !important;
}

/* ==========================================================================
   Post Keywords Styles
   ========================================================================== */

.post-keywords {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.keyword-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: lowercase;
    transition: background-color 0.3s ease;
}

.keyword-tag:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ==============================
   POST DETAIL PAGE - MEJORADO
   ============================== */

/* Hero Section */
.post-hero {
    height: 65vh;
}
.post-hero-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.post-hero-content {
    background: rgba(0, 0, 0, 0.45);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}
.post-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.post-breadcrumb a {
    color: #00bcd4;
    text-decoration: none;
}
.post-breadcrumb a:hover {
    text-decoration: underline;
}
.post-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.post-hero-meta {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Tags */
.post-tags-section {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.post-tags-section strong {
    color: white;
    font-weight: 600;
}
.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tag:hover {
    background: #00bcd4;
    transform: translateY(-2px);
}

/* Contenido principal */
.post-content-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
.post-body {
    flex: 2;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}
.post-body h2 {
    margin: 2.5rem 0 1.2rem;
    font-size: 1.8rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.4rem;
}
.post-body h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00bcd4;
}
.post-body p {
    margin-bottom: 1.5rem;
}
.post-body img {
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: block;
}
.post-body blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #00bcd4;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}
.post-body code {
    background: #f1f1f1;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95em;
}
.post-body pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Sidebar */
.post-sidebar {
    flex: 1;
}
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}
.sidebar-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00bcd4;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-info img {
    width: 70px;
    height: 70px;
    border: 3px solid #00bcd4;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.author-details h4 {
    margin-bottom: 5px;
}
.author-details p {
    font-size: 0.9rem;
    color: #666;
}

/* Related Posts */
.sidebar-related-posts li {
    margin-bottom: 20px;
}
.sidebar-related-posts a {
    display: flex;
    gap: 15px;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s;
}
.sidebar-related-posts a:hover {
    transform: translateX(5px);
}
.sidebar-related-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.related-post-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.related-post-info span {
    font-size: 0.85rem;
    color: #777;
}

/* Share Section */
.post-share-section {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.post-share-section strong {
    color: #2c3e50;
    font-weight: 600;
}
.post-share-section a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e0f7fa;
    color: #00bcd4;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.post-share-section a:hover {
    background: #00bcd4;
    color: white;
    transform: scale(1.1);
}

/* Post Navigation */
.post-navigation {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}
.post-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-nav-prev,
.post-nav-next {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 45%;
    text-decoration: none;
    color: #333;
}
.post-nav-prev i,
.post-nav-next i {
    color: #00bcd4;
}
.post-nav-info span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}
.post-nav-info h4 {
    font-weight: 600;
}
.post-nav-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00bcd4;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s;
}
.post-nav-all:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .post-content-wrapper {
        flex-direction: column;
    }
    .post-hero-title {
        font-size: 2.2rem;
    }
    .post-nav-prev,
    .post-nav-next {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }
    .post-nav-prev {
        flex-direction: row-reverse;
    }
    .post-nav-next {
        flex-direction: row;
    }
}
@media (max-width: 576px) {
    .post-hero-title {
        font-size: 1.8rem;
    }
    .post-hero-content {
        padding: 1.5rem;
    }
    .post-share-section {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==============================
   BLOG PAGE ENHANCEMENTS
   ============================== */

/* Hero Section */
.page-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.page-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Keywords Tags */
.post-keywords {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.keyword-tag {
    background: rgba(0, 188, 212, 0.15);
    color: #00bcd4;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Single Post */
.single-post-content {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.post-category {
    background: #00bcd4;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}
.post-social-share {
    display: flex;
    align-items: center;
    gap: 12px;
}
.post-social-share span {
    font-weight: 500;
    color: #555;
}
.post-social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    transition: all 0.3s ease;
}
.post-social-share a:hover {
    background: #00bcd4;
    color: white;
    transform: scale(1.1);
}

/* Post Body Readability */
.post-body {
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}
.post-body h2 {
    margin: 2.5rem 0 1.2rem;
    font-size: 1.8rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.4rem;
}
.post-body h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00bcd4;
}
.post-body p {
    margin-bottom: 1.5rem;
}
.post-body img {
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: block;
}
.post-body blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #00bcd4;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.post-navigation a {
    color: #00bcd4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.post-navigation a:hover {
    color: #00a8b9;
    text-decoration: underline;
}
.post-navigation i {
    margin: 0 8px;
}

/* Blog List Cards */
.blog-post-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.blog-post-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.blog-post-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}
.blog-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 18px;
    background: #00bcd4;
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}
.blog-post-content {
    padding: 30px;
}
.blog-post-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.blog-post-card:hover .blog-post-title {
    color: #00bcd4;
}
.blog-post-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.sidebar-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00bcd4;
}
.sidebar-tags a {
    padding: 6px 16px;
    background: #f1f1f1;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}
.sidebar-tags a:hover {
    background: #00bcd4;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-page-content {
        flex-direction: column;
    }
    .single-post-content {
        padding: 30px 20px;
    }
    .post-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.4rem;
    }
    .blog-post-title {
        font-size: 1.4rem;
    }
}

/* ==============================
   SINGLE POST DETAIL - MEJORADO
   ============================== */

.single-post-content {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 40px;
}
.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.post-category {
    background: #00bcd4;
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}
.post-date {
    color: #777;
    font-style: italic;
}
.post-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin: 20px 0;
    line-height: 1.2;
}
.post-author {
    color: #666;
    font-size: 1.1rem;
}

/* Post Body */
.post-body {
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}
.post-body h2 {
    margin: 2.5rem 0 1.2rem;
    font-size: 1.8rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.4rem;
}
.post-body h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00bcd4;
}
.post-body p {
    margin-bottom: 1.5rem;
}
.post-body img {
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: block;
}
.post-body blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #00bcd4;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}
.post-body code {
    background: #f1f1f1;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}
.post-body pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Tags */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.post-tags strong {
    color: #2c3e50;
    font-weight: 600;
}
.tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f1f1;
    color: #555;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tag:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-2px);
}

/* Share Section */
.post-share-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}
.post-share-section strong {
    color: #2c3e50;
    font-weight: 600;
}
.post-share-section a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    text-decoration: none;
    transition: all 0.3s ease;
}
.post-share-section a:hover {
    background: #00bcd4;
    color: white;
    transform: scale(1.1);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.nav-prev a,
.nav-next a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 45%;
    text-decoration: none;
    color: #00bcd4;
    transition: color 0.3s;
}
.nav-prev a:hover,
.nav-next a:hover {
    color: #00a8b9;
}
.nav-prev i,
.nav-next i {
    align-self: flex-start;
    font-size: 1.2rem;
}
.nav-next {
    align-items: flex-end;
}
.nav-next i {
    align-self: flex-end;
}
.nav-prev h4,
.nav-next h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.nav-prev span,
.nav-next span {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .single-post-content {
        padding: 30px 20px;
    }
    .post-title {
        font-size: 2.2rem;
    }
    .post-navigation {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .nav-prev,
    .nav-next {
        width: 100%;
        align-items: center;
    }
    .nav-prev i,
    .nav-next i {
        align-self: center;
    }
}