/*
Theme Name: Best Hoster Luxury Blog
Theme URI: https://besthoster.ae
Description: Premium Luxury Blog Theme for Best Hoster - Elegant & Modern Design
Version: 3.2
Author: Best Hoster
Author URI: https://besthoster.ae
Text Domain: besthoster
*/

/* ===== CSS Variables - Luxury Color Palette ===== */
:root {
    --primary-gold: #d4af37;
    --gold-light: #e6c85c;
    --gold-dark: #b8941f;
    --dark-brown: #2a1a0a;
    --medium-brown: #5d4037;
    --light-beige: #f8f4e9;
    --cream-white: #fffdf7;
    --off-white: #f9f9f9;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-light: #e8e8e8;
    --section-bg: rgba(255, 253, 247, 0.98);
    --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    --gradient-brown: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8f4e9 0%, #fffdf7 50%, #f0ece0 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

/* ===== Container & Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ===== Header Styles ===== */
.site-header {
    background: var(--cream-white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    left: 0;
    right: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    min-height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 55px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.logo-text span {
    color: var(--primary-gold);
    font-weight: 300;
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== Navigation ===== */
.main-navigation {
    flex-shrink: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.main-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 15px;
    border: 2px solid transparent;
    white-space: nowrap;
}

.main-navigation a:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}

.main-navigation .current-menu-item a {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== Header Actions ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-actions a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-register {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-login {
    background: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--dark-brown);
}

.btn-login:hover {
    background: var(--dark-brown);
    color: white;
    transform: translateY(-3px);
}

.btn-profile {
    background: var(--gradient-brown);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 26, 10, 0.2);
}

.btn-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 26, 10, 0.3);
}

.btn-logout {
    background: transparent;
    color: var(--text-light);
    padding: 12px;
    border: 2px solid var(--border-light);
}

.btn-logout:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: translateY(-3px);
}

.btn-booking {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* ===== Hero Section ===== */
.hero-section {
    background: var(--gradient-brown);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23d4af37" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.btn-home {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-home:hover {
    background: white;
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-booking-primary {
    background: var(--gradient-gold);
    color: var(--dark-brown);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-booking-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* ===== Newsletter Subscription ===== */
.newsletter-section {
    background: var(--gradient-gold);
    padding: 60px 0;
    margin: 60px 0;
    text-align: center;
    border-radius: 20px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

.newsletter-content p {
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--dark-brown);
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 26, 10, 0.1);
}

.newsletter-form button {
    background: var(--dark-brown);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(42, 26, 10, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42, 26, 10, 0.4);
    gap: 15px;
}

/* ===== Visitor Counter ===== */
.visitor-counter {
    background: var(--gradient-brown);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--card-shadow);
}

.visitor-counter h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.visitor-stat {
    text-align: center;
}

.visitor-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.visitor-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== Main Content Area ===== */
.content-area {
    display: flex;
    gap: 50px;
    margin: 50px auto;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.main-content {
    flex: 1;
    width: 100%;
    min-width: 0;
}

/* ===== Blog Posts Grid ===== */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
    width: 100%;
}

.post-card {
    background: var(--section-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    position: relative;
    width: 100%;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.post-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.post-thumbnail {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail {
    transform: scale(1.08);
}

.post-content {
    padding: 30px;
    width: 100%;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--primary-gold) 50%);
    background-size: 220% 100%;
    background-position: 100% 0;
    transition: all 0.4s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.post-title a:hover {
    background-position: 0 0;
    color: var(--dark-brown);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.post-meta i {
    color: var(--primary-gold);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    padding: 10px 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    background: transparent;
}

.read-more:hover {
    background: var(--primary-gold);
    color: white;
    gap: 15px;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ===== Single Post Styles ===== */
.single-post {
    background: var(--section-bg);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.single-post .post-thumbnail {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.single-post .featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.single-post .featured-image:hover {
    transform: scale(1.02);
}

.single-post .post-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--dark-brown);
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.single-post .post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-light);
    flex-wrap: wrap;
}

.single-post .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.single-post .meta-item i {
    color: var(--primary-gold);
    width: 16px;
    text-align: center;
}

.single-post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
    width: 100%;
}

.single-post-content h2 {
    color: var(--dark-brown);
    margin: 45px 0 25px;
    font-weight: 500;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
}

.single-post-content h3 {
    color: var(--medium-brown);
    margin: 35px 0 20px;
    font-weight: 500;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.single-post-content p {
    margin-bottom: 1.8em;
    text-align: justify;
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary-gold);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--off-white);
    border-radius: 0 16px 16px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.single-post-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.single-post-content ul,
.single-post-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.single-post-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.single-post-content img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    max-width: 100%;
    height: auto;
}

/* Post Tags */
.post-tags {
    background: var(--off-white);
    padding: 25px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-gold);
    width: 100%;
}

.post-tags strong {
    color: var(--dark-brown);
    margin-right: 10px;
    font-weight: 600;
}

.post-tags a {
    color: var(--primary-gold);
    text-decoration: none;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0 5px 5px 0;
    display: inline-block;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Author Box */
.author-box {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream-white) 100%);
    padding: 35px;
    border-radius: 16px;
    margin: 45px 0;
    display: flex;
    gap: 25px;
    align-items: center;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.author-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    padding: 30px;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    width: 100%;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-next a {
    flex-direction: row-reverse;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--section-bg);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    width: 100%;
}

/* Page Links */
.page-links {
    margin: 30px 0;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    text-align: center;
    width: 100%;
}

.page-links-title {
    font-weight: 600;
    color: var(--dark-brown);
    margin-right: 15px;
}

.page-link {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

/* ===== Author Box ===== */
.author-box {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream-white) 100%);
    padding: 35px;
    border-radius: 16px;
    margin: 45px 0;
    display: flex;
    gap: 25px;
    align-items: center;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.author-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Comments Section ===== */
.comments-area {
    margin-top: 60px;
}

.comments-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 35px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 15px;
    display: inline-block;
}

.comment-list {
    list-style: none;
    margin-bottom: 50px;
}

.comment {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.comment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.comment-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.comment-author-info {
    flex: 1;
}

.comment-author-info .fn {
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.comment-author-info .fn a {
    color: inherit;
    text-decoration: none;
}

.comment-metadata {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.comment-edit-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.comment-edit-link:hover {
    color: var(--gold-dark);
}

.comment-rating {
    margin-bottom: 15px;
}

.comment-rating i {
    color: var(--primary-gold);
    margin-right: 3px;
    font-size: 14px;
}

.comment-rating i.rated {
    color: var(--primary-gold);
}

.comment-content {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.comment-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.comment-reply-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 18px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    background: transparent;
}

.comment-reply-link:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.comment-awaiting-moderation {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ===== Comment Form ===== */
.comment-respond {
    background: var(--section-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 1.6rem;
    color: var(--dark-brown);
    margin-bottom: 30px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 12px;
    display: inline-block;
}

.comment-form {
    display: grid;
    gap: 25px;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--off-white);
    font-family: inherit;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: white;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.comment-form-rating {
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    font-size: 24px;
    color: var(--border-light);
    transition: color 0.3s ease;
    margin: 0;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: var(--primary-gold);
}

.form-submit {
    margin-top: 10px;
}

.submit {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    gap: 15px;
}

/* ===== Sidebar ===== */
.sidebar {
    width: 350px;
    flex-shrink: 0;
}

.widget {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.widget-title {
    color: var(--dark-brown);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.widget a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

/* Recent Posts Widget */
.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 5px;
}

.recent-posts a:hover {
    color: var(--primary-gold);
}

.recent-posts .post-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Destination List */
.destination-list li {
    margin-bottom: 12px;
}

.destination-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.destination-list a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
    border-color: var(--primary-gold);
}

/* Contact Info in Sidebar */
.contact-info {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
}

.contact-info h4 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-info .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--gradient-brown);
    color: white;
    padding: 70px 0 30px;
    margin-top: 80px;
    position: relative;
    width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-widget h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(8px);
    border-color: var(--primary-gold);
}

.footer-links a::before {
    content: '›';
    margin-right: 10px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* ===== Social Media Links ===== */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== Footer Bottom ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== Quick Action Buttons ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: var(--section-bg);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    text-align: center;
}

.quick-btn:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-gold);
}

/* ===== User Profile Styles ===== */
.user-profile {
    background: var(--section-bg);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    margin: 40px auto;
    max-width: 1000px;
}

.profile-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.profile-name {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.profile-bio {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== Mobile Responsive Design - Fixed ===== */
@media (max-width: 1024px) {
    .content-area {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        order: -1;
    }
    
    .blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .single-post .featured-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Fix horizontal scrolling */
    html, body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        min-height: auto;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
    
    .header-actions {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .header-actions a {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .header-actions span {
        display: none;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .main-navigation a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .hero-section {
        padding: 80px 0 50px 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .hero-actions a {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Fix single post mobile issues */
    .single-post {
        padding: 30px 20px;
        margin: 0 -15px;
        width: calc(100% + 30px);
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .single-post .post-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .single-post .post-meta {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .single-post .featured-image {
        height: 300px;
        border-radius: 0;
        margin: -30px -20px 30px -20px;
        width: calc(100% + 40px);
    }
    
    .single-post-content {
        font-size: 1.1rem;
    }
    
    /* Fix images in content */
    .single-post-content img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Fix tables */
    .single-post-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Fix iframes and videos */
    .single-post-content iframe,
    .single-post-content video {
        max-width: 100%;
        height: auto;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-previous,
    .nav-next {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .user-profile {
        padding: 30px 20px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .content-area {
        margin: 30px 0;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .visitor-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 70px 0 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .comment-respond {
        padding: 25px;
    }
    
    .single-post .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .header-actions a {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .main-navigation a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .single-post {
        padding: 20px 15px;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .single-post .featured-image {
        height: 250px;
        margin: -20px -15px 20px -15px;
        width: calc(100% + 30px);
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Loading Animation ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Print Styles ===== */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .hero-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}