/* ===== BLOG HERO ===== */
.blog-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)),
                url('https://images.unsplash.com/photo-1492684223066-e9e4aab4d25e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ===== BLOG CATEGORIES ===== */
.blog-categories {
    background: var(--dark-gray);
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
    position: sticky;
    top: 80px;
    z-index: 99;
    backdrop-filter: blur(10px);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories-container::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: var(--black);
    border: 1px solid rgba(201, 169, 106, 0.1);
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    letter-spacing: 0.5px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}

.category-btn:hover,
.category-btn.active {
    color: var(--black);
    border-color: var(--gold);
}

.category-btn:hover::before,
.category-btn.active::before {
    transform: translateY(0);
}

/* ===== FEATURED ARTICLE ===== */
.featured-article {
    padding: 8rem 2rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 106, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 106, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-image {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 106, 0.2);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(201, 169, 106, 0.3);
}

.featured-container:hover .featured-image img {
    transform: scale(1.08);
}

.featured-content .article-category {
    display: inline-block;
    background: rgba(201, 169, 106, 0.15);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 2px;
}

.featured-content h2 {
    font-size: 2.8rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.article-excerpt {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(201, 169, 106, 0.1);
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--light-gray);
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.meta-item i {
    color: var(--gold);
    font-size: 1rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(201, 169, 106, 0.05);
    border-radius: 4px;
}

.article-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    display: block;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-title {
    display: block;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-family: var(--font-sans);
}

/* ===== BLOG LISTING ===== */
.blog-listing {
    padding: 8rem 2rem;
    background: var(--dark-gray);
    position: relative;
}

.blog-listing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgba(201, 169, 106, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(201, 169, 106, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.blog-article {
    background: var(--black);
    border: 1px solid rgba(201, 169, 106, 0.1);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(201, 169, 106, 0.03) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.article-image .article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(201, 169, 106, 0.9);
    color: var(--black);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 2px;
    z-index: 2;
}

.blog-article:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(201, 169, 106, 0.2);
}

.blog-article:hover::before {
    opacity: 1;
}

.blog-article:hover .article-image img {
    transform: scale(1.12);
}

.article-content {
    padding: 2.5rem;
}

.article-content h3 {
    color: var(--cream);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.article-content p {
    color: var(--light-gray);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    opacity: 0.9;
}

.article-content .article-meta {
    margin-bottom: 1.8rem;
    padding: 0;
    border: none;
    gap: 1.5rem;
}

.article-content .meta-item {
    font-size: 0.85rem;
}

.article-author-small {
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    padding: 0.5rem 0;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.article-link:hover {
    gap: 1.2rem;
}

.article-link:hover::after {
    width: 100%;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
}

.pagination::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 106, 0.1) 20%, 
        rgba(201, 169, 106, 0.1) 80%, 
        transparent 100%);
    transform: translateY(-50%);
    z-index: -1;
}

.page-btn {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border: 1px solid rgba(201, 169, 106, 0.2);
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}

.page-btn:hover,
.page-btn.active {
    color: var(--black);
    border-color: var(--gold);
}

.page-btn:hover::before,
.page-btn.active::before {
    transform: scale(1);
}

.page-btn.next {
    width: auto;
    padding: 0 2rem;
    gap: 0.8rem;
    background: rgba(201, 169, 106, 0.1);
    border-color: rgba(201, 169, 106, 0.3);
}

.page-btn.next:hover {
    background: var(--gold);
}

/* ===== NEWSLETTER ===== */
.blog-newsletter {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 100%),
        url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.blog-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(201, 169, 106, 0.1) 0%, transparent 50%);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: var(--cream);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.newsletter-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.newsletter-form-large {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.2rem;
    background: rgba(10, 10, 10, 0.7);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(201, 169, 106, 0.2);
}

.newsletter-form-large .form-group {
    position: relative;
}

.newsletter-form-large .form-group input,
.newsletter-form-large .form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    color: var(--light-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 2px;
}

.newsletter-form-large .form-group input:focus,
.newsletter-form-large .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 106, 0.1);
}

.newsletter-form-large .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A96A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.newsletter-form-large .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border: none;
}

.newsletter-form-large .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 106, 0.2);
}

.privacy-note {
    color: var(--light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.8;
}

.privacy-note i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ===== BLOG CTA ===== */
.blog-cta {
    padding: 8rem 2rem;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 106, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 106, 0.05) 0%, transparent 40%);
}

.blog-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-cta h2 {
    color: var(--cream);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.blog-cta p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE BLOG ===== */
@media (max-width: 1200px) {
    .featured-container {
        gap: 3rem;
    }
    
    .featured-content h2 {
        font-size: 2.4rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .featured-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-image {
        height: 350px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form-large {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .newsletter-content h2 {
        font-size: 3rem;
    }
    
    .blog-cta h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 3rem;
    }
    
    .categories-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
    }
    
    .category-btn {
        flex: 1;
        min-width: 140px;
        text-align: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .featured-content h2 {
        font-size: 2rem;
    }
    
    .article-excerpt {
        font-size: 1.05rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 200px;
    }
    
    .newsletter-content h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-content p {
        font-size: 1.1rem;
    }
    
    .blog-cta h2 {
        font-size: 2.5rem;
    }
    
    .blog-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .featured-article,
    .blog-listing {
        padding: 6rem 1.5rem;
    }
    
    .featured-content h2 {
        font-size: 1.8rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
    }
    
    .newsletter-content h2 {
        font-size: 2.2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form-large {
        padding: 1.5rem;
    }
    
    .blog-cta {
        padding: 6rem 1.5rem;
    }
    
    .blog-cta h2 {
        font-size: 2.2rem;
    }
    
    .blog-cta p {
        font-size: 1rem;
    }
    
    .pagination {
        gap: 0.5rem;
    }
    
    .page-btn {
        width: 40px;
        height: 40px;
    }
    
    .page-btn.next {
        padding: 0 1.2rem;
        font-size: 0.9rem;
    }
}
/* ===== CONTACT INFO FOOTER ===== */
.contact-info-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.6);
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 106, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.2rem;
    min-width: 30px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item strong {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span {
    color: var(--light-gray);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item a[href^="mailto"] {
    font-size: 0.95rem;
}

.contact-item a[href^="mailto"]:first-of-type {
    margin-bottom: 0.2rem;
}

/* ===== WHATSAPP FLOAT ANIMATION ===== */
.whatsapp-float {
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== ENHANCED FOOTER LINKS ===== */
.footer-links .link-column a {
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links .link-column a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
}

.footer-links .link-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links .link-column a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* ===== LAUNCH MESSAGE UPDATE ===== */
.launch-message {
    background: linear-gradient(90deg, 
        rgba(201, 169, 106, 0.1) 0%,
        rgba(201, 169, 106, 0.05) 50%,
        rgba(201, 169, 106, 0.1) 100%);
    border-top: 1px solid rgba(201, 169, 106, 0.1);
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.launch-message h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.launch-message h4::before,
.launch-message h4::after {
    content: '✦';
    color: var(--gold-light);
    font-size: 0.8rem;
    opacity: 0.5;
}

.activity-status {
    color: var(--light-gray);
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== FOOTER BOTTOM UPDATE ===== */
.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 106, 0.1);
    margin-top: 2rem;
    background: rgba(10, 10, 10, 0.5);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(201, 169, 106, 0.3);
    padding-bottom: 0.1rem;
}

.footer-bottom a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 992px) {
    .contact-info-footer {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-footer {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .launch-message h4 {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .launch-message h4::before,
    .launch-message h4::after {
        display: none;
    }
    
    .activity-status {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links .link-column {
        text-align: center;
    }
    
    .footer-links .link-column a {
        padding-left: 0;
    }
    
    .footer-links .link-column a::before {
        display: none;
    }
    
    .contact-info-footer {
        margin: 1rem auto 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .contact-info-footer {
        display: none;
    }
    
    .whatsapp-float {
        display: none;
    }
    
    .footer-social a {
        display: none;
    }
}