/*
Theme Name: Luxury Vacations
Theme URI: https://luxuryvacations.net
Description: A sleek, modern, and luxurious WordPress theme designed for affluent travelers and luxury vacation enthusiasts. Features a sophisticated black and white color scheme with elegant gold accents.
Author: LuxuryVacations.net
Version: 1.0.5
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxuryvacations
Tags: luxury, travel, vacation, modern, responsive, blog, portfolio, business
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2.2rem;
    font-weight: 500;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #d4af37;
    text-decoration: none;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
    margin: 20px auto 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    background: #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

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

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: #d4af37;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.main-navigation a {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a:hover::after,
.main-navigation a.current {
    color: #d4af37;
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle:hover span {
    background: #d4af37;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
}

/* ===== FEATURED DESTINATIONS ===== */
.featured-destinations {
    background: #f8f8f8;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-content {
    padding: 30px;
}

.destination-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.destination-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-link {
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.destination-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.destination-link-wrapper:hover {
    text-decoration: none;
    color: inherit;
}

.destination-link-wrapper:hover .destination-link {
    color: #1a1a1a;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

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

.newsletter-title {
    color: white;
    margin-bottom: 20px;
}

.newsletter-description {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

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

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
}

.newsletter-submit {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===== TRAVEL GUIDES SECTION ===== */
.travel-guides-section {
    background: #ffffff;
}

.guides-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.guide-card {
    text-align: center;
    width: 200px;
}

.guide-link {
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #d4af37;
}

.guide-image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.guide-link:hover .guide-image-container {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.guide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.guide-link:hover .guide-image {
    transform: scale(1.1);
}

.guide-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.guide-link:hover .guide-image-overlay {
    opacity: 1;
}

.guide-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.blog-title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d4af37;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.read-more {
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1a1a1a;
    transform: translateX(3px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

/* 
  This rule is a robust way to make a container full-width, even when it's
  nested inside another container with restricted width. It works by setting the
  width to 100% of the viewport width (vw) and then using a calculated negative 
  margin to pull it back to the screen's edge.
*/
.full-width-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    padding-right: 20px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Additional footer width fixes */
#page {
    overflow-x: hidden;
}

.single .site-footer .container,
.page .site-footer .container,
.archive .site-footer .container,
.search .site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .destinations-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Single Post Responsive */
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.screen-reader-text {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.gold-accent {
    color: #d4af37;
}

.white-text {
    color: white;
}

.dark-bg {
    background-color: #1a1a1a;
}

.light-bg {
    background-color: #f8f8f8;
}

/* ===== SINGLE POST STYLES ===== */
.post-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.2;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.post-content blockquote {
    border-left: 4px solid #d4af37;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f8f8;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.post-tags {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post-tags h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px 10px 5px 0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #d4af37;
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation a {
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: #d4af37;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
}

.related-posts h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

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

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.related-post-content h4 a {
    color: #1a1a1a;
}

.related-post-content h4 a:hover {
    color: #d4af37;
}

.related-post-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

/* ===== LUXURY ARTICLE STYLES ===== */

/* Article Header Hero */
.article-header-hero {
    padding: 60px 0 40px;
    margin-top: 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #f0f0f0;
}

.article-header-hero .article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.article-header-hero .meta-separator {
    opacity: 0.6;
}

.article-title-hero {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-excerpt-hero {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Featured Image Section */
.article-featured-image {
    margin-top: 0;
    margin-bottom: 0;
}

.featured-image-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}

/* Article Layout */
.content-sidebar-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
    padding: 0 0 80px;
}

.site-content-container {
    padding-top: 80px;
}

#primary.site-main {
    min-width: 0;
}

#secondary.sidebar-area {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Remove old article-layout class */
.article-layout {
    display: none;
}

.article-main {
    min-width: 0;
}

.luxury-article {
    background: white;
}

.article-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 80px;
}

.article-content p {
    margin-bottom: 2rem;
    text-align: justify;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-content h2 {
    font-size: 2.2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    position: relative;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.article-content h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin: 2.5rem 0 1rem;
}

/* Enhanced Blockquotes */
.article-content blockquote {
    border-left: 4px solid #d4af37;
    padding: 30px 40px;
    margin: 40px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.3rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    opacity: 0.7;
}

.article-content blockquote strong {
    color: #d4af37;
    font-weight: 600;
}

/* Luxury Tables */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
}

.article-content table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.article-content table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
}

.article-content table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    line-height: 1.6;
}

.article-content table tbody tr:nth-child(even) {
    background: #fafafa;
}

.article-content table tbody tr:hover {
    background: #f5f5f5;
    transition: background 0.3s ease;
}

.article-content table tbody tr:last-child td {
    border-bottom: none;
}

/* Enhanced Lists */
.article-content ul,
.article-content ol {
    margin: 30px 0;
    padding-left: 0;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 15px;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.article-content ul li::before {
    content: '→';
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.article-content ol li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    background: #f0f0f0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.article-content ol {
    counter-reset: list-counter;
}

/* Table of Contents Styling */
.article-content div[style*="background:#f7f7f9"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-left: 4px solid #d4af37 !important;
    padding: 25px 30px !important;
    margin: 40px 0 !important;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-content div[style*="background:#f7f7f9"] strong {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 15px;
}

.article-content div[style*="background:#f7f7f9"] ul {
    margin: 0;
}

.article-content div[style*="background:#f7f7f9"] li {
    margin-bottom: 8px;
    padding-left: 20px;
}

.article-content div[style*="background:#f7f7f9"] li::before {
    content: '▸';
    color: #d4af37;
}

.article-content div[style*="background:#f7f7f9"] a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-content div[style*="background:#f7f7f9"] a:hover {
    color: #d4af37;
}

/* Itinerary Day Boxes */
.article-content div[style*="background:#eef6ff"] {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%) !important;
    padding: 25px 30px !important;
    border-radius: 15px !important;
    margin: 25px 0 !important;
    border-left: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.article-content div[style*="background:#eef6ff"] strong {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.article-content div[style*="background:#eef6ff"]::before {
    content: '✦';
    position: absolute;
    top: 25px;
    right: 25px;
    color: #d4af37;
    font-size: 1.2rem;
}

/* Enhanced Images */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Emphasis and Strong Text */
.article-content em {
    font-style: italic;
    color: #666;
    font-weight: 300;
}

.article-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Links */
.article-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #1a1a1a;
    border-bottom-color: #d4af37;
}

/* Back to Top Link */
.article-content p[style*="text-align:center"] a {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    margin-top: 20px;
}

.article-content p[style*="text-align:center"] a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: #1a1a1a;
}

/* Special Content Boxes */
.article-content div[style*="border-left:4px solid #0077cc"] {
    border-left: 4px solid #d4af37 !important;
    background: linear-gradient(135deg, #fffbf0 0%, #fef8e8 100%) !important;
    padding: 25px 30px !important;
    margin: 30px 0 !important;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    position: relative;
}

.article-content div[style*="border-left:4px solid #0077cc"]::before {
    content: '💡';
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.2rem;
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

/* Search Widget */
.search-input-wrapper {
    position: relative;
    display: flex;
}

.search-field {
    flex: 1;
    padding: 15px 50px 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.search-field:focus {
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #1a1a1a;
    transform: translateY(-50%) scale(1.05);
}

/* Latest Posts Widget */
.latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.latest-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.latest-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-post-image:hover img {
    transform: scale(1.1);
}

/* Sidebar Post Type Badges */
.sidebar-post-type-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-post-type-badge.destinations-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.sidebar-post-type-badge.guides-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.3);
}

.sidebar-post-type-badge.post-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.latest-post-content {
    flex: 1;
    min-width: 0;
}

.latest-post-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.latest-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-post-title a:hover {
    color: #d4af37;
}

.latest-post-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #999;
}

.post-type-label {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

.post-type-label {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.latest-post-meta .post-type-label {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.latest-post-meta .post-type-label.destinations-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.latest-post-meta .post-type-label.guides-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.3);
}

.latest-post-meta .post-type-label.post-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #d4af37;
    color: white;
    transform: translateX(5px);
}

.category-name {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-count {
    background: white;
    color: #666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover .category-name {
    color: white;
}

.category-link:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget .widget-title::after {
    background: #d4af37;
}

.newsletter-description {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
}

.newsletter-email {
    flex: 1;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

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

.newsletter-email:focus {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #f4e5a3;
    transform: translateY(-50%) scale(1.05);
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popular-post-item {
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.popular-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-title a:hover {
    color: #d4af37;
}

.popular-post-meta {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    gap: 15px;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-link:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Article Footer */
.article-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 60px;
}

.article-taxonomy {
    margin-bottom: 50px;
}

.article-categories,
.article-tags {
    margin-bottom: 20px;
}

.taxonomy-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.article-categories a,
.article-tags a {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin: 5px 10px 5px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-categories a:hover,
.article-tags a:hover {
    background: #d4af37;
    color: white;
}

/* Share Buttons */
.article-share {
    margin-bottom: 60px;
    text-align: center;
}

.share-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.pinterest { background: #bd081c; }
.share-btn.email { background: #666; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Article Navigation */
.article-navigation {
    margin-bottom: 40px;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-link {
    display: block;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: white;
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-direction {
    display: block;
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.nav-next .nav-link {
    text-align: right;
}

/* Responsive Design for Layout */
@media (max-width: 1024px) {
    .content-sidebar-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .content-sidebar-wrapper {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    #secondary.sidebar-area {
        position: static;
    }

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

    .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-next .nav-link {
        text-align: left;
    }
}

/* ===== DESTINATIONS PAGE ===== */

.destinations-hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 80px; /* Adjust for fixed header */
    border-bottom: 1px solid #f0f0f0;
}

.destinations-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.destinations-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.destinations-intro {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.destinations-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

.intro-paragraph:first-child {
    font-size: 1.3rem;
    color: #2c2c2c;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.intro-paragraph:first-child::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    opacity: 0.7;
}

.intro-paragraph:first-child::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 3rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    opacity: 0.7;
}

.destinations-container {
    padding: 80px 20px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.country-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.country-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.country-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-list li {
    margin-bottom: 12px;
}

.locations-list li:last-child {
    margin-bottom: 0;
}

.locations-list a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 25px;
}

.locations-list a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    opacity: 0;
    transition: all 0.3s ease;
}

.locations-list a:hover {
    color: #d4af37;
    padding-left: 30px;
}

.locations-list a:hover::before {
    opacity: 1;
    left: 5px;
}

.no-destinations-message {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Responsive adjustments for destinations intro */
@media (max-width: 768px) {
    .destinations-intro {
        padding: 60px 0;
    }
    
    .intro-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .intro-paragraph {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .intro-paragraph:first-child {
        font-size: 1.2rem;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .intro-paragraph:first-child::before,
    .intro-paragraph:first-child::after {
        font-size: 2rem;
    }
}

/* ===== RELATED ARTICLES (COMPACT LAYOUT) ===== */

.related-articles {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.related-articles .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: left;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.related-articles .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 10px 0 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.related-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

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

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 20px;
}

.related-meta {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 500;
}

.related-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.related-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-title a:hover {
    color: #d4af37;
}

.related-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.related-link {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.related-link:hover {
    color: #1a1a1a;
    transform: translateX(3px);
}

/* Responsive adjustments for related articles */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-image {
        height: 140px;
    }
    
    .related-content {
        padding: 15px;
    }
    
    .related-articles .section-title {
        font-size: 1.5rem;
    }
}

/* ===== ABOUT US PAGE ===== */

.about-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 80px;
    border-bottom: 1px solid #f0f0f0;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.6;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
    margin-top: 15px;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Statistics Section */
.site-statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.stats-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.member-avatar {
    text-align: center;
    margin-bottom: 25px;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: #d4af37;
    transform: scale(1.05);
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 600;
}

.member-title {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
}

.member-bio {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.member-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.member-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-stat i {
    color: #d4af37;
    font-size: 1rem;
}

.member-specialties {
    margin-bottom: 25px;
}

.member-specialties h4 {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialty-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

.view-author-posts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.view-author-posts:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: white;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 60px;
    font-style: italic;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-image {
        order: -1;
    }
    
    .story-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .company-story,
    .site-statistics,
    .team-section,
    .mission-section {
        padding: 80px 0;
    }
    
    .section-heading,
    .stats-title,
    .team-title,
    .mission-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 30px;
    }
    
    .member-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 50px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .company-story,
    .site-statistics,
    .team-section,
    .mission-section {
        padding: 60px 0;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

/* Author Page Styles */
.author-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.author-hero {
    margin-bottom: 0;
}

/* Enhanced Author Statistics Section */
.author-stats {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.author-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
}

.author-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.author-stats .stat-item {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.author-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.author-stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.author-stats .stat-item:hover::before {
    transform: scaleX(1);
}

.author-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transition: color 0.3s ease;
}

.author-stats .stat-item:hover .stat-number {
    color: #d4af37;
}

.author-stats .stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Enhanced Author Content Section */
.author-content {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Improved Content Filter */
.content-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    padding: 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #666;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Enhanced Posts Grid */
.author-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.author-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
    border: 1px solid #f0f0f0;
    position: relative;
}

.author-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.author-post-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.author-post-card:hover::before {
    opacity: 1;
}

/* Enhanced Post Thumbnail */
.author-post-card .post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.author-post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.author-post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

/* Enhanced Post Type Badges */
.post-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.post-type-badge.destinations-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.post-type-badge.guides-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
}

.post-type-badge.post-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.author-post-card:hover .post-type-badge {
    transform: translateY(-3px) scale(1.05);
}

/* Enhanced Post Content */
.author-post-card .post-content {
    padding: 35px;
    position: relative;
}

.author-post-card .post-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #999;
}

.author-post-card .post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-post-card .post-meta i {
    color: #d4af37;
    font-size: 0.9rem;
}

.author-post-card .post-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.author-post-card .post-title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.author-post-card .post-title a:hover {
    color: #d4af37;
}

.author-post-card .post-excerpt {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.author-post-card .post-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid transparent;
}

.author-post-card .read-more:hover {
    color: #1a1a1a;
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateX(5px);
}

/* Enhanced Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(2px);
}

/* Enhanced No Content Section */
.no-content {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.no-content-message {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.no-content-message i {
    font-size: 5rem;
    color: #d4af37;
    margin-bottom: 40px;
    opacity: 0.8;
}

.no-content-message h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.no-content-message p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.no-content .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.no-content .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
    .author-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .author-stats {
        padding: 60px 0;
    }
    
    .author-stats .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .author-stats .stat-item {
        padding: 30px 20px;
    }
    
    .author-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .author-content {
        padding: 80px 0;
    }
    
    .content-filter {
        gap: 10px;
        padding: 15px;
        border-radius: 25px;
    }
    
    .filter-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
    
    .author-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .author-post-card .post-thumbnail {
        height: 250px;
    }
    
    .author-post-card .post-content {
        padding: 25px;
    }
    
    .author-post-card .post-title {
        font-size: 1.3rem;
    }
    
    .no-content {
        padding: 80px 0;
    }
    
    .no-content-message {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .no-content-message h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .author-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .author-stats .stat-item {
        padding: 25px 15px;
    }
    
    .author-stats .stat-number {
        font-size: 2rem;
    }
    
    .author-stats .stat-label {
        font-size: 0.9rem;
    }
    
    .content-filter {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .author-post-card .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .no-content-message h2 {
        font-size: 1.8rem;
    }
    
    .no-content-message i {
        font-size: 4rem;
    }
}

/* ===== CONTACT US PAGE ===== */

.contact-page {
    background: #f8f9fa;
}

/* Contact Hero Section */
.contact-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin-top: 80px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-subtitle {
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Content */
.contact-content {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Luxury Contact Form */
.luxury-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Custom Checkbox */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: #fafafa;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    margin-top: 20px;
    align-self: center;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Contact Information Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-card,
.why-choose-us,
.social-connect {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-card:hover,
.why-choose-us:hover,
.social-connect:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-info-card h3,
.why-choose-us h3,
.social-connect h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-card h3::after,
.why-choose-us h3::after,
.social-connect h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #d4af37;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #d4af37;
    color: white;
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-text a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1a1a1a;
}

.contact-text small {
    color: #999;
    font-size: 0.85rem;
}

/* Why Choose Us Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Social Connect */
.social-connect .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-connect .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    background: #fafafa;
}

.social-connect .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-connect .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: white;
}

.social-connect .social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-connect .social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.social-connect .social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.social-connect .social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-connect p {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Map Section */
.contact-map {
    background: #e9ecef;
    padding: 0;
}

.map-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.map-content {
    text-align: center;
    z-index: 2;
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.map-content i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.map-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 350px;
        gap: 60px;
    }
    
    .contact-form-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card,
    .why-choose-us,
    .social-connect {
        padding: 30px;
    }
    
    .map-content {
        padding: 30px;
        margin: 20px;
    }
    
    .map-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 50px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-card,
    .why-choose-us,
    .social-connect {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .map-content {
        padding: 25px;
        margin: 15px;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* Contact Form Messages */
.contact-message {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-message.success {
    border-left: 4px solid #28a745;
}

.contact-message.error {
    border-left: 4px solid #dc3545;
}

.contact-message i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-message.success i {
    color: #28a745;
}

.contact-message.error i {
    color: #dc3545;
}

.contact-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-message p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Contact Content */

/* ===== LUXURY PAGINATION STYLES ===== */

.luxury-pagination {
    margin: 80px 0 60px;
    padding: 40px 0;
    border-top: 2px solid #f0f0f0;
    position: relative;
}

.luxury-pagination::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 100%);
}

.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-item {
    display: flex;
    align-items: center;
}

.pagination-item a,
.pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 12px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.pagination-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.pagination-item a:hover::before {
    left: 100%;
}

.pagination-item a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    border-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.pagination-item.current span {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-color: #1a1a1a;
    color: white;
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
    transform: translateY(-2px);
}

.pagination-item.prev a,
.pagination-item.next a {
    min-width: 140px;
    height: 48px;
    gap: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 24px;
    padding: 0 24px;
    font-weight: 700;
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pagination-item.prev a:hover,
.pagination-item.next a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
    border-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.pagination-item.prev a::before,
.pagination-item.next a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.pagination-item.prev a:hover::before,
.pagination-item.next a:hover::before {
    left: 100%;
}

.pagination-item.prev a span,
.pagination-item.next a span {
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.pagination-item.prev a i,
.pagination-item.next a i {
    font-size: 0.75rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.pagination-item.prev a:hover i {
    transform: translateX(-3px);
}

.pagination-item.next a:hover i {
    transform: translateX(3px);
}

.pagination-item.dots span {
    border: none;
    background: transparent;
    color: #999;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: default;
}

.pagination-item.dots span:hover {
    background: transparent;
    color: #999;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    text-align: center;
}

.pagination-stats {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive Design for Pagination */
@media (max-width: 768px) {
    .luxury-pagination {
        margin: 60px 0 40px;
        padding: 30px 0;
    }
    
    .pagination-container {
        gap: 20px;
    }
    
    .pagination-list {
        gap: 6px;
    }
    
    .pagination-item a,
    .pagination-item span {
        min-width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    
    .pagination-item.prev a,
    .pagination-item.next a {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .pagination-stats {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .pagination-list {
        gap: 4px;
    }
    
    .pagination-item a,
    .pagination-item span {
        min-width: 40px;
        height: 40px;
        font-size: 0.85rem;
        padding: 0 8px;
    }
    
    .pagination-item.prev a,
    .pagination-item.next a {
        min-width: 100px;
        height: 40px;
        font-size: 0.8rem;
        padding: 0 15px;
        border-radius: 20px;
        gap: 6px;
    }
    
    .pagination-item.prev a span,
    .pagination-item.next a span {
        display: none;
    }
    
    .pagination-stats {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}