/* Extracted from blog.php */
.journal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.4);
}
.journal-card:hover .journal-img {
    transform: scale(1.05);
}
.journal-card:hover .journal-title {
    color: var(--gold);
}
.journal-card:hover .arrow {
    transform: translateX(5px);
}

/* Extracted from blog-detail.php */
.article-body h2, .article-body h3, .article-body h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.article-body h2 { font-size: 2.1rem; border-left: 3px solid var(--gold); padding-left: 15px; }
.article-body h3 { font-size: 1.7rem; }
.article-body p {
    margin-bottom: 1.6rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.85);
}
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
}
.article-body a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(197, 160, 89, 0.3);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s;
}
.article-body a:hover {
    text-decoration-color: var(--gold);
}
.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.8rem;
    margin: 3rem 0;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    background: rgba(197, 160, 89, 0.03);
    border-radius: 0 16px 16px 0;
}
.article-body ul, .article-body ol {
    margin-bottom: 2rem;
    padding-left: 1.8rem;
}
.article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Extracted from faq.php */
/* FAQ Page Hero */
    .faq-hero {
        position: relative;
        min-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }
    
    .faq-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1506501139174-099022df5260?q=80&w=2000');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        filter: brightness(0.2) contrast(1.1);
        z-index: -2;
    }

    .faq-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,1) 100%);
        z-index: -1;
    }
    
    .faq-page-content {
        padding-top: 2rem;
        padding-bottom: 6rem;
    }

/* Extracted from gallery.php */
.gallery-page-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .gallery-page-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            aspect-ratio: 4/3;
        }

        .gallery-page-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-page-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }

/* Extracted from b2b.php */
/* B2B Page Styles */
    .b2b-hero {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }
    
    .b2b-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2000'); /* Professional handshake / meeting */
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        filter: brightness(0.3) contrast(1.1) grayscale(10%);
        z-index: -2;
        transform: scale(1.05);
        animation: subtleZoom 25s infinite alternate ease-in-out;
    }

    .b2b-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,1) 100%);
        z-index: -1;
    }

    @keyframes subtleZoom {
        0% { transform: scale(1.05); }
        100% { transform: scale(1.15); }
    }

    .b2b-intro {
        max-width: 850px;
        margin: 0 auto;
        padding: 5rem 1rem;
        text-align: center;
    }

    .b2b-intro p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 300;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 3rem;
        margin-bottom: 5rem;
    }

    .benefit-card {
        background: rgba(15, 15, 15, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.4s ease, border-color 0.4s ease;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        border-color: rgba(197, 160, 89, 0.3);
    }

    .benefit-card-icon {
        color: var(--gold);
        margin-bottom: 1.5rem;
    }
    
    .benefit-card-icon svg {
        width: 48px;
        height: 48px;
    }

    .benefit-card-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 1rem;
    }

    .benefit-card-desc {
        color: rgba(255,255,255,0.6);
        line-height: 1.7;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .benefits-grid { grid-template-columns: 1fr; }
    }

    /* Form Styles */
    .form-parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1549740425-5e9ed4d8cd34?q=80&w=1470&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
        filter: brightness(0.2) contrast(1.1);
    }

    .form-parallax-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, var(--obsidian, #050505) 0%, rgba(5,5,5,0.8) 30%, rgba(5,5,5,0.8) 70%, var(--obsidian, #050505) 100%);
        z-index: 1;
    }

    .b2b-form-wrapper {
        background: var(--glass);
        backdrop-filter: blur(16px);
        border: 1px solid var(--glass-border);
        border-top: 3px solid var(--gold);
        border-radius: 12px;
        padding: 4rem 3rem;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

    .form-group-float {
        position: relative;
        margin-bottom: 2.5rem;
    }

    .form-control-float {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 0;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-control-float:focus {
        outline: none;
        border-bottom-color: var(--gold);
    }

    .form-label-float {
        position: absolute;
        top: 10px;
        left: 0;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-control-float:focus ~ .form-label-float,
    .form-control-float:not(:placeholder-shown) ~ .form-label-float {
        top: -15px;
        font-size: 0.8rem;
        color: var(--gold);
    }

    .grid-2-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    @media (max-width: 768px) {
        .grid-2-cols { grid-template-columns: 1fr; gap: 0; }
        .b2b-form-wrapper { padding: 2rem; }
    }
