/* ========================================
   Aneka Macam Beton - Modern Elegant Design
   Color Scheme: Red & White
   ======================================== */

:root {
    /* Primary Colors - Red & White Theme */
    --primary-red: #e53935;
    --primary-dark: #c62828;
    --primary-light: #ff5252;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;

    /* Accent Colors */
    --dark-text: #212121;
    --gray-text: #424242;
    --light-text: #757575;

    /* Gradients */
    --gradient-red: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 4px 20px rgba(229, 57, 53, 0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ========================================
   NAVBAR - Minimal & Elegant
   ======================================== */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-red) !important;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-text) !important;
    margin: 0 0.75rem;
    padding: 0.5rem 0 !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-cta {
    background: var(--primary-red);
    color: white !important;
    padding: 0.6rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 57, 53, 0.35);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E53935' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   PAGE HEADER - Clean & Modern
   ======================================== */
.page-header {
    background: var(--gradient-light);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(229, 57, 53, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-header .lead {
    font-size: 1.2rem;
    color: var(--gray-text);
    font-weight: 300;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--light-text);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item.active {
    color: var(--gray-text);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light-text);
}

/* ========================================
   SECTIONS - Typography & Spacing
   ======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 300;
    margin-top: 0.5rem;
}

/* ========================================
   PRODUCT CARDS - Elegant & Clean
   ======================================== */
.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-red);
}

.product-card .card-body {
    padding: 1.75rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.product-card .card-text {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--gray-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--primary-red);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.btn-product {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-product:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    border-radius: 16px;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.vision-mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.vision-mission-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        rgba(229, 57, 53, 0.1) 0%,
        rgba(198, 40, 40, 0.1) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.vision-mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.mission-list li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Why Choose Cards */
.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.wc-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(229, 57, 53, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.wc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        rgba(229, 57, 53, 0.1) 0%,
        rgba(198, 40, 40, 0.1) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.wc-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.why-choose-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-choose-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-light);
    position: relative;
}

.stat-box {
    padding: 2rem 1rem;
    text-align: center;
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-red);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 1rem 0 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   SERVICE PAGE STYLES
   ======================================== */
.service-card-main {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: var(--transition);
}

.service-card-main:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(229, 57, 53, 0.1) 0%,
        rgba(198, 40, 40, 0.1) 100%
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.service-card-main h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.service-list li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Process Cards */
.process-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(229, 57, 53, 0.08);
    line-height: 1;
}

.process-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: block;
}

.process-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Additional Service Cards */
.additional-service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.additional-service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.as-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        rgba(229, 57, 53, 0.1) 0%,
        rgba(198, 40, 40, 0.1) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.as-icon i {
    font-size: 1.75rem;
    color: var(--primary-red);
}

.additional-service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.additional-service-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        rgba(229, 57, 53, 0.1) 0%,
        rgba(198, 40, 40, 0.1) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-info-card span {
    font-size: 0.85rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.quick-contact-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-card i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quick-contact-card p {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    background: white;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--primary-red);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-red);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E53935'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-text);
}

/* ========================================
   BUTTONS - Modern & Elegant
   ======================================== */
.btn-primary {
    background: var(--primary-red);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 57, 53, 0.35);
}

.btn-outline-primary {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--primary-red);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.4);
}

/* ========================================
   CTA SECTION - Elegant
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(229, 57, 53, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(229, 57, 53, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    color: var(--gray-text);
    font-weight: 300;
}

/* ========================================
   FOOTER - Modern & Elegant
   ======================================== */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-red) 0%,
        #ff6b6b 50%,
        var(--primary-red) 100%
    );
}

footer::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(229, 57, 53, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

h3.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h3.footer-title::after {
    display: none;
}

h3.footer-title i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
}

.footer-links a i {
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a:hover i.bi-chevron-right {
    color: var(--primary-red);
}

.footer-links a:hover i.text-danger {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    color: white;
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .text-danger,
.footer-bottom i.bi-heart-fill {
    color: var(--primary-red) !important;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   FEATURE BOXES
   ======================================== */
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(229, 57, 53, 0.1) 0%,
        rgba(198, 40, 40, 0.1) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1.5rem 0;
        background: white;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    .btn-cta {
        margin-top: 1rem;
        width: 100%;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-whatsapp,
    .btn-primary,
    .btn-outline-primary {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary {
    color: var(--primary-red) !important;
}

.bg-light {
    background: var(--light-gray) !important;
}

.text-muted {
    color: var(--light-text) !important;
}

/* Main Content */
.error-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* 404 Number */
.error-number {
    font-size: 12rem;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        var(--primary-red) 0%,
        var(--primary-dark) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both, pulse 2s ease-in-out infinite;
    position: relative;
}

.error-number::before {
    content: "404";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-text-fill-color: rgba(229, 57, 53, 0.1);
    z-index: -1;
    font-size: 13rem;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.error-icon {
    font-size: 5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    animation: shake 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes shake {
    0%,
    100% {
        transform: rotate(0deg);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-5deg);
    }
    20%,
    40%,
    60%,
    80% {
        transform: rotate(5deg);
    }
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.4s both;
}

.lead-text {
    font-size: 1.25rem;
    color: #757575;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Search Form */
.search-form {
    max-width: 500px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.input-group {
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.2);
}

.form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: transparent;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-search {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.quick-link {
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.2);
}

.quick-link i {
    font-size: 1.25rem;
}

/* Help Section */
.help-section {
    margin-top: 4rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.help-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.15);
    border-color: var(--primary-red);
}

.help-card-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.help-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-family: "Montserrat", sans-serif;
}

.help-card-text {
    font-size: 0.95rem;
    color: #757575;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 8rem;
    }

    .error-number::before {
        font-size: 9rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .logo a {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: 20px;
    }

    .btn-search {
        width: 100%;
        margin-top: 0.5rem;
    }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-link {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .error-number {
        font-size: 6rem;
    }

    .error-number::before {
        font-size: 7rem;
    }

    h1 {
        font-size: 2rem;
    }

    .error-icon {
        font-size: 4rem;
    }
}

/* Main Content */
.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.4s both;
}

.highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.lead-text {
    font-size: 1.25rem;
    color: #757575;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
}

/* Gallery Specific Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e0e0e0;
    background: white;
    color: #424242;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(229, 57, 53, 0.2);
    border-color: var(--primary-red);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.gallery-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: "Montserrat", sans-serif;
}

.gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-icon i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-info {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    margin-top: -4px;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-family: "Montserrat", sans-serif;
}

.lightbox-info p {
    color: #757575;
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--primary-red);
    color: white;
    transform: rotate(90deg);
}

.lightbox-close i {
    font-size: 1.5rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--primary-red);
    color: white;
}

.lightbox-nav i {
    font-size: 1.5rem;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Stats Section */
.gallery-stats {
    background: linear-gradient(
        135deg,
        var(--primary-red) 0%,
        var(--primary-dark) 100%
    );
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 16px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Article Specific Styles */
.article-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 8rem 0 4rem;
    margin-bottom: 3rem;
}

.article-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: #757575;
    font-size: 0.95rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-item i {
    color: var(--primary-red);
}

.article-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #424242;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 2.5rem 0 1.5rem;
    font-family: "Montserrat", sans-serif;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 2rem 0 1rem;
    font-family: "Montserrat", sans-serif;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content blockquote {
    background: #fff5f5;
    border-left: 4px solid var(--primary-red);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    color: #424242;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Author Box */
.author-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #757575;
    margin: 0;
    font-size: 0.95rem;
}

/* Share Buttons */
.share-section {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.share-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}
.share-btn.twitter {
    background: #1da1f2;
}
.share-btn.whatsapp {
    background: #25d366;
}
.share-btn.linkedin {
    background: #0077b5;
}
.share-btn.copy {
    background: #757575;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-red);
}

.related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post:last-child {
    margin-bottom: 0;
}

.related-post-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-post-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-post-info .post-date {
    font-size: 0.85rem;
    color: #757575;
}

.related-post-info .post-date i {
    color: var(--primary-red);
    margin-right: 0.25rem;
}

/* Tags */
.article-tags {
    margin: 3rem 0;
}

.article-tags-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #424242;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

/* Related Articles */
.related-articles {
    background: #fafafa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.related-articles-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.news-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(229, 57, 53, 0.15);
    border-color: var(--primary-red);
}

.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card-body {
    padding: 1.5rem;
}

.news-card-category {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: #757575;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header {
        padding: 6rem 0 3rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}
