/*
Theme Name: Joya Custom
Description: Organized Stylesheet
Version: 6.0
*/

/* =========================================================================
   1. GLOBAL SETTINGS
   ========================================================================= */

:root {
    /* Colors */
    --joya-blue: #1c3988;
    --joya-orange: #fdb933;
    --joya-dark: #0a162e;
    --joya-text: #333333;
    --joya-grey: #666666;
    --joya-light-grey: #f9f9f9;

    /* Global Typography Settings */
    --font-h2: 2.5rem;
    --font-h3: 1.2rem;
    --font-body: 22px;
    --font-card-body: 20px;
    --line-height: 1.6;
}

/* --- Base Reset --- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--joya-text);
    font-size: var(--font-body);
    line-height: var(--line-height);
    font-weight: 500;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    padding: 40px 0;
    text-align: center;
    vertical-align: center;
}

.clients-section h2,
.what-we-do h2,
.sectors-header h2,
.why-choose-header h2,
.client-testimonials h2,
.meet-the-team-header h2,
.testimonial-intro h2,
.blog-header h2 {
    font-size: var(--font-h2);
    color: var(--joya-blue);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.clients-section p,
.feature-item p,
.client-testimonials p {
    font-size: var(--font-body);
    line-height: var(--line-height);
    color: var(--joya-text);
}



/* Buttons */
.btn-cta {
    background: var(--joya-orange);
    color: #000;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    display: inline-block;
}

/* Lead Gen CTA (Used on Testimonials & About) */
.lead-gen-cta {
    background: var(--joya-dark);
    padding: 80px 0;
    text-align: center;
}

.lead-gen-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Shared Hero Base */
.joya-hero-base {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Vertically center content */
    padding: 0;
    width: 100%;
}

/* --- Navigation --- */
.nav-bar {
    display: block;
    padding: 0;
    background: var(--joya-dark);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo img {
    height: 45px;
    object-fit: contain;
}

.nav-inner .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-inner .nav-links a {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- Footer --- */
footer {
    background: var(--joya-blue);
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-size: 13px;
    margin-top: 20px;
}

.quote-icon {
    font-size: 80px;
    color: var(--joya-orange);
    line-height: 0;
    font-family: Georgia, serif;
    margin-bottom: 10px;
}

/* --- Global Responsive (Nav) --- */
@media (max-width: 900px) {

    .container {
        padding: 5px 10px;
    }

    /* Mobile Navigation */
    .hamburger-menu {
        display: flex;
    }

    .nav-inner .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--joya-dark);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-inner .nav-links.active {
        display: flex;
    }

    .nav-inner .nav-links li {
        width: 100%;
    }

    .nav-inner .nav-links a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}


/* =========================================================================
   2. HOMEPAGE
   ========================================================================= */

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--joya-dark);
}

.hero-video-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--joya-dark) 0%, rgba(10, 22, 46, 0.4) 50%, transparent 100%);
    z-index: 1;
}

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

.hero-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
    text-shadow: none;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--joya-blue);
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 20px;
}

/* Clients Carousel */
.clients-section {
    text-align: center;
}

.client-section-header {
    background: #ffffff;
}

.client-section-header h2 {
    color: var(--joya-blue);
    font-size: 2.5rem;
    margin-bottom: 0;
}

.client-logos {
    justify-content: center;
    align-items: center;
    margin: 0px 0px;
    background: #ffffff;
}

.joya-testimonial-wrapper {
    clear: both;
    overflow: hidden;
    padding: 40px 0;
}

/* What We Do */
.what-we-do {
    padding: 0px 5%;
    max-width: 1440px;
    margin: 20px auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 20px 0;
}

.service-card {
    padding: 10px 25px;
    text-align: left;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card p {
    font-size: var(--font-card-body);
    line-height: 1.5;
}

.service-card h3 {
    font-size: var(--font-h3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    display: inline-block;
}

.card-blue {
    background: var(--joya-blue);
    color: white;
}

.card-blue h3 {
    border-color: rgba(255, 255, 255, 0.3);
}

.card-blue p {
    color: white;
}

.card-orange {
    background: var(--joya-orange);
    color: var(--joya-blue);
}

.card-orange h3 {
    border-color: rgba(28, 57, 136, 0.3);
}

/* Sectors */
.sectors-header {
    background: var(--joya-blue);
    margin-top: 20px;
}

.sectors-header h2 {
    color: white;
    margin: 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    margin: 40px 0;
}

.sector-box {
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sector-text-box {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

.sector-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Joya */
.why-choose {
    background: #fff;
    text-align: center;
    margin-top: 20px;
}

.why-choose-header {
    background: var(--joya-blue);
}

.why-choose-header h2 {
    color: white;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 40px 0;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h3 {
    color: var(--joya-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Bottom Image Separator */
.why-bg-image {
    height: 400px;
    width: 100%;
    position: relative;
}

.why-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Homepage Contact Section (Split Layout) */
.contact-section {
    padding: 0;
    margin: 40px 0;
}

.contact-split-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}

.contact-left-video {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.contact-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-form-col {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px;
}

.contact-form-card {
    width: 100%;
    padding: 0px 0px;
    text-align: center;
}

.contact-form-card h2 {
    color: var(--joya-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form-card img {
    margin: 0 auto 20px auto;
    object-fit: contain;
}

/* Homepage Responsive */
@media (max-width: 1024px) {

    .services-grid,
    .sectors-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .announcement-bar {
        padding: 20px 0;
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Sectors Mobile Redesign: 1 Col, Overlay Text */
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Use grid placement to overlap text on images */
    .sectors-grid>.sector-img-box {
        grid-column: 1;
        width: 100%;
        height: 100%;
        border: none;
        z-index: 1;
        /* Ensure images take up the full cell */
    }

    .sectors-grid>.sector-text-box {
        grid-column: 1;
        z-index: 2;
        /* Slightly gray overlay as requested */
        background: rgba(50, 50, 50, 0.7) !important;
        color: white !important;
        align-items: center;
        /* Center text vertically within the strip */
        justify-content: center;
        height: 50%;
        /* Top 3rd */
        width: 100%;
        align-self: start;
        /* Position at top */
        border: none;
        box-shadow: none;
        font-size: 2.5rem;
    }

    /* Manually pair the 8 items into 4 rows */
    /* Pair 1: Pharma (Img 1, Text 2) */
    .sectors-grid> :nth-child(1) {
        grid-row: 1;
    }

    .sectors-grid> :nth-child(2) {
        grid-row: 1;
    }

    /* Pair 2: Health Tech (Img 3, Text 4) */
    .sectors-grid> :nth-child(3) {
        grid-row: 2;
    }

    .sectors-grid> :nth-child(4) {
        grid-row: 2;
    }

    /* Pair 3: Medical Devices (Text 5, Img 6) -> Swap Text to over Img */
    .sectors-grid> :nth-child(6) {
        grid-row: 3;
    }

    .sectors-grid> :nth-child(5) {
        grid-row: 3;
    }

    /* Pair 4: Biotech (Text 7, Img 8) -> Swap Text to over Img */
    .sectors-grid> :nth-child(8) {
        grid-row: 4;
    }

    .sectors-grid> :nth-child(7) {
        grid-row: 4;
    }
}


/* =========================================================================
   3. ABOUT US PAGE
   ========================================================================= */

/* Hero Override */
.about-hero .testimonials-hero {
    /* joya-hero-base provides structure */
    background-color: #fff;
}

.about-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    /* opacity: 1; */
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--joya-dark) 35%, rgba(10, 22, 46, 0.85) 50%, rgba(10, 22, 46, 0) 75%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.about-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin: 15px;
    max-width: 600px;
    line-height: 1.1;
}

/* Founder’s Spotlight */
.founder-spotlight {
    background-color: var(--joya-light-grey);
    padding: 80px 0;
}

.founder-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.founder-image-wrapper {
    flex: 1;
    text-align: right;
}

.founder-image-wrapper img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--joya-orange);
}

.founder-content {
    flex: 1;
    text-align: left;
}

.mission-text {
    font-size: 1.2rem;
    color: var(--joya-text);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.founder-info strong {
    display: block;
    color: var(--joya-blue);
    font-size: 1.4rem;
    font-weight: 700;
}

.founder-info span {
    color: var(--joya-grey);
    font-size: 1.4rem;
}

/* Joya Difference */
.joya-difference {
    background-color: #ffffff;
    padding: 0;
}

.joya-difference-header {
    background: var(--joya-blue);
}

.joya-difference-header h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 0;
}

.diff-card {
    text-align: center;
    padding: 20px;
}

.diff-icon {
    color: var(--joya-orange);
    margin-bottom: 20px;
}

.diff-icon svg {
    stroke: var(--joya-orange);
}

.diff-card h3 {
    color: var(--joya-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.diff-card p {
    font-size: var(--font-card-body);
    color: var(--joya-text);
    line-height: 1.5;
}

/* Meet The Team */
.meet-the-team-header {
    background-color: #ffffff;
}



.meet-the-team-grid {
    background-color: #ffffff;
    padding: 40px 0 80px 0;
    text-align: center;
}

.meet-the-team-grid img {
    display: inline-block !important;
    margin-bottom: 15px;
    border-radius: 50%;
}

/* About Responsive */
@media (max-width: 900px) {
    .founder-grid {
        flex-direction: column;
        text-align: center;
    }

    .founder-image-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }

    .founder-content {
        text-align: center;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   4. TESTIMONIALS PAGE
   ========================================================================= */


.testimonials-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 40%;
    opacity: 1;
}

/* Intro Section */
.testimonial-intro {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding: 0;
}

.testimonial-intro h1 {
    color: var(--joya-blue);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--font-body);
    color: var(--joya-text);
}

/* Featured Testimonial */
.featured-testimonial {
    background: var(--joya-blue);
    padding: 60px 0;
    width: 100%;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    max-width: 300px;
    margin: 0 auto;
}

/* Inverse layout for alternating rows (Desktop only) */
@media (min-width: 901px) {
    .featured-grid.inverse {
        grid-template-columns: 1.5fr 1fr;
    }

    .featured-grid.inverse .featured-image {
        order: 2;
    }
}

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

.featured-content blockquote {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.6;
    border: none;
    padding: 0;
}

.featured-client-info {
    color: var(--joya-orange);
    font-size: 1.1rem;
}

.featured-client-info strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--joya-orange);
}

/* Light Mode Variation (Bottom Featured) */
.featured-testimonial.light-mode {
    background: var(--joya-light-grey);
}

.featured-testimonial.light-mode .featured-content blockquote {
    color: var(--joya-text);
}

.featured-testimonial.light-mode .quote-icon,
.featured-testimonial.light-mode .featured-client-info,
.featured-testimonial.light-mode .featured-client-info strong {
    color: var(--joya-blue);
}

/* Testimonial Grid Section */
.testimonial-grid-section {
    padding: 60px 0;
    background: #fff;
    font-size: 14px;
}

.testimonial-custom-grid img {
    display: inline-block !important;
    vertical-align: middle;
}

/* Testimonials Responsive */
@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-content {
        text-align: center;
    }

    .testimonial-intro h1 {
        font-size: 2.5rem;
    }
}


/* =========================================================================
   5. CONTACT US PAGE
   ========================================================================= */

/* Hero Override */
.contact-hero {
    /* joya-hero-base provides structure */
    justify-content: flex-end;
}

.contact-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 22, 46, 0.2) 0%, rgba(10, 22, 46, 0.9) 70%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
}

/* Main Layout Grid */
.contact-main-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: start;
}

/* Left Column: Form Card (Page Specific) */
/* (Note: Some classes here share names with homepage contact form but have distinct styling rules previously) */


.contact-form-card .wpcf7-form label {
    display: none;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #7a7a7a;
    border-radius: 4px;
    font-size: 16px;
    color: var(--joya-blue);
}

.contact-form-card input[type="submit"] {
    background: var(--joya-orange);
    color: var(--joya-blue);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    margin: 20px auto 0;
    display: block;
    width: auto;
    min-width: 150px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-form-card input[type="submit"]:hover {
    opacity: 0.9;
}

/* Right Column: Info & Quote */
.contact-info-col {
    padding-top: 20px;
    margin: 0 20px;
}

.get-in-touch h3 {
    color: var(--joya-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--joya-blue);
    font-weight: 500;
}

.contact-details-list .icon-wrap {
    color: var(--joya-blue);
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.contact-details-list a {
    color: var(--joya-blue);
    text-decoration: none;
}

.contact-quote-box {
    border: 5px solid #e0ccb9;
    border-color: var(--joya-orange);
    padding: 40px;
    position: relative;
    background: #fff;
}

.contact-quote-box .quote-mark {
    color: var(--joya-orange);
    font-size: 4rem;
    line-height: 1;
    font-family: serif;
    margin-bottom: 10px;
}

.contact-quote-box p {
    color: var(--joya-blue);
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-hero-content {
        align-items: center;
        text-align: center;
    }

    .contact-hero-overlay {
        background: linear-gradient(180deg, rgba(10, 22, 46, 0.4) 0%, rgba(10, 22, 46, 0.9) 90%);
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* =========================================================================
   6. Blog page
   ========================================================================= */

.blog-page-container {
    padding: 10px 10px;
}

.blog-header {
    text-align: center;
    margin-bottom: 0px;
}

.blog-header h1 {
    color: var(--joya-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Card Styling */
.blog-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-image img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
    object-position: top;
}

.post-content {
    padding: 25px;
}

.post-date {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-content h2 {
    font-size: 22px;
    margin: 15px 0;
}

.post-content h2 a {
    color: var(--joya-blue);
    text-decoration: none;
}

.read-more {
    color: #f1bd61;
    /* Joya Gold */
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* Blog Pagination */
.blog-pagination {
    margin: 60px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.blog-pagination .nav-links {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border: none;
    border-radius: 50%;
    background-color: #f2f2f2;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin: 0;
    line-height: 1;
}

.blog-pagination .page-numbers:hover {
    background-color: #e0e0e0;
    color: #000000;
}

.blog-pagination .page-numbers.current {
    background-color: var(--joya-blue);
    color: var(--joya-orange);
    font-weight: 700;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto;
    border-radius: 50px;
    padding: 0 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: #999;
    min-width: auto;
    height: auto;
}


/* -------- single post page --------- */

.single-post-container {
    padding-bottom: 80px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.post-entry-header {
    padding: 40px 0 40px;
    text-align: center;
}

.post-category a {
    color: #f1bd61;
    /* Joya Gold */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.post-title {
    font-size: clamp(1rem, 3vw + 1rem, 2.5rem);
    color: var(--joya-blue);
    margin: 20px 0;
    line-height: 1.2;
}

.post-meta {
    color: #888;
    font-size: 15px;
}

/* Content Typography */
.post-entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.post-entry-content p {
    margin-bottom: 30px;
}

.post-entry-content h2,
.post-entry-content h3 {
    color: var(--joya-blue);
    margin: 50px 0 20px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 60px;
}