/* Page Header */
.page-header {
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px; /* offset for fixed header */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 35, 60, 0.92), rgba(20, 52, 88, 0.88));
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.breadcrumb {
    color: #e2e8f0;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.breadcrumb a {
    color: #e2c082;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: var(--primary);
}

/* Detail Sections */
.detail-section {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image {
    position: sticky;
    top: 100px;
}

.detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 39, 66, 0.1);
}

.detail-text h2 {
    text-align: right;
    margin-bottom: 2rem;
    color: var(--navy-deep);
}

.detail-text h2::after {
    left: auto;
    right: 0;
    transform: none;
}

.detail-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-body);
}

.detail-features {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(15, 39, 66, 0.1);
    border-right: 4px solid var(--primary);
    box-shadow: var(--shadow-card);
}

.detail-features h3 {
    color: var(--navy-deep);
    margin-bottom: 20px;
}

.detail-features ul {
    list-style: none;
}

.detail-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-body);
}

.detail-features i {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.12);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* About Page */
.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.story-content {
    flex: 1;
}

.story-img {
    flex: 1;
}

.story-img img {
    width: 100%;
    border-radius: 20px 0 20px 0;
    box-shadow: -10px -10px 0 var(--primary);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-slate));
    color: #ffffff;
    padding: 50px 20px;
    border-radius: 16px;
    margin-top: 50px;
    box-shadow: var(--shadow-card);
}

/* Services Page (List View) */
.services-full-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-row {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(15, 39, 66, 0.1);
    box-shadow: var(--shadow-card);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row-img {
    flex: 1;
    height: 300px;
}

.service-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-row-content {
    flex: 1.2;
}

.service-row-content h3 {
    color: var(--navy-deep);
}

.service-row-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-row-content li {
    margin-bottom: 10px;
    color: var(--text-body);
}

.service-row-content li i {
    color: var(--primary);
    margin-left: 10px;
}

/* Laser Page Specifics */
.laser-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.laser-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy-deep);
}

.laser-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.laser-feature-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(15, 39, 66, 0.1);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.laser-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.laser-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.laser-feature-card:hover::before {
    transform: scaleX(1);
}

.laser-feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.laser-feature-card h3 {
    margin-bottom: 10px;
    color: var(--navy-deep);
}

.laser-feature-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Enhanced Gallery for Laser Page */
.laser-gallery-wrapper {
    margin-top: 50px;
}

.gallery-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1; /* Square aspect ratio */
    cursor: pointer;
    border: 1px solid rgba(15, 39, 66, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 35, 60, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-overlay i {
    color: #fff;
    font-size: 1.5rem;
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 35, 60, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border: 2px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Contact Page Specific */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(15, 39, 66, 0.1);
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow-card);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-link {
    color: var(--navy-deep);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.info-link:hover {
    color: var(--primary);
}

.big-contact-form {
    width: 100%;
    margin: 0 auto;
}

/* ========================================================
   MODERN REVAMP: Services & Projects Page Aesthetics
   ======================================================== */

/* Luxury Hero Header */
.modern-page-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, #0c233c 0%, #14375d 50%, #1b497c 100%);
    border-bottom: 2px solid rgba(184, 142, 68, 0.3);
    overflow: hidden;
    text-align: center;
}

.modern-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184, 142, 68, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
    pointer-events: none;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 20px;
    background: #091f35;
    border: 1.5px solid #c59b4f;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(9, 31, 53, 0.18);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.2px;
}

.hero-pill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 31, 53, 0.25);
    border-color: #dfb265;
}

.hero-pill-badge i {
    font-size: 0.95rem;
    color: #e5b85a;
}

.modern-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.modern-hero-title span {
    color: #e5b85a;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 2px 14px rgba(229, 184, 90, 0.35);
}

.modern-hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 760px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Hero Metrics Bar */
.hero-metrics-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 850px;
    margin: 0 auto;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.metric-item i {
    color: #e2c082;
    font-size: 1.1rem;
}

/* Modern Filter Tabs Bar */
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 50px;
}

.filter-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.14);
    color: var(--navy-deep);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(15, 39, 66, 0.04);
}

.filter-tab-btn i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.filter-tab-btn:hover {
    background: #f1f5f9;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab-btn.active {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 39, 66, 0.25);
}

.filter-tab-btn.active i {
    color: #e2c082;
    transform: scale(1.15);
}

/* Luxury Service Card Overhaul */
/* Luxury Service Card Overhaul - Refined Architectural Design */
.luxury-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
    margin-bottom: 70px;
}

.luxury-service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 39, 66, 0.07);
    text-decoration: none;
    color: inherit;
}

.luxury-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(15, 39, 66, 0.12), 0 0 20px rgba(184, 142, 68, 0.15);
}

.service-card-media {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
    background: #f1f5f9;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-service-card:hover .service-card-media img {
    transform: scale(1.08);
}

.service-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 39, 66, 0.6) 0%, rgba(15, 39, 66, 0.1) 60%, rgba(0,0,0,0) 100%);
}

.service-floating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 39, 66, 0.88);
    border: 1px solid rgba(184, 142, 68, 0.4);
    padding: 6px 14px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(15, 39, 66, 0.2);
}

.service-card-content {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fef8ee;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.luxury-service-card:hover .service-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 15px rgba(184, 142, 68, 0.35);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0;
    line-height: 1.3;
    transition: color 0.3s;
}

.luxury-service-card:hover .service-card-title {
    color: var(--primary);
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 39, 66, 0.08);
    color: var(--navy-deep);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.2s;
}

.service-tag-pill i {
    color: var(--primary);
    font-size: 0.75rem;
}

.luxury-service-card:hover .service-tag-pill {
    background: #fef8ee;
    border-color: rgba(184, 142, 68, 0.3);
    color: var(--primary-dark);
}

.service-actions-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 39, 66, 0.08);
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.btn-card-explore {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--navy-deep);
    border: 1px solid var(--navy-deep);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.btn-card-explore:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(184, 142, 68, 0.25);
    transform: translateY(-2px);
}

.btn-card-explore i {
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.btn-card-explore:hover i {
    transform: translateX(-5px);
}

.btn-card-whatsapp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #15803d;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.btn-card-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-card-whatsapp i {
    font-size: 1.15rem;
}

/* Workflow Timeline Section */
.workflow-section {
    padding: 90px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.workflow-section h2 {
    color: var(--navy-deep) !important;
    font-weight: 900;
}

.workflow-section p {
    color: var(--text-body) !important;
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
}

.workflow-step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 14px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}

.workflow-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
}

.workflow-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(184, 142, 68, 0.25);
}

.workflow-step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

.workflow-step-title {
    font-size: 1.15rem;
    color: var(--navy-deep);
    margin-bottom: 10px;
    font-weight: 800;
}

.workflow-step-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Quality Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 45px;
}

.standard-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}

.standard-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.standard-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #fef8ee;
    border: 1px solid rgba(184, 142, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.standard-card-body h4 {
    font-size: 1.1rem;
    color: var(--navy-deep);
    font-weight: 800;
    margin-bottom: 6px;
}

.standard-card-body p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Luxury Consultation CTA Box */
.luxury-cta-banner {
    margin-top: 70px;
    background: linear-gradient(135deg, #0d2744 0%, #15385f 100%);
    border: 1px solid rgba(184, 142, 68, 0.25);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(15, 43, 72, 0.12);
}

.cta-banner-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-banner-content h3 span {
    color: #e2c082;
}

.cta-banner-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 650px;
    margin-bottom: 0;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-luxury-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-luxury-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ========================================================
   MODERN REVAMP: Projects & Portfolio Overhaul
   ======================================================== */

.projects-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.featured-project-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.1);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 25px rgba(15, 39, 66, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: #ffffff;
}

.featured-project-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(15, 43, 72, 0.12), 0 0 25px rgba(184, 142, 68, 0.16);
}

.project-box-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-project-box:hover .project-box-bg {
    transform: scale(1.1);
}

.project-box-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 35, 60, 0.92) 0%, rgba(15, 43, 72, 0.6) 50%, rgba(0,0,0,0.05) 100%);
    transition: background 0.3s;
}

.featured-project-box:hover .project-box-gradient {
    background: linear-gradient(to top, rgba(12, 35, 60, 0.96) 0%, rgba(15, 43, 72, 0.7) 55%, rgba(0,0,0,0.08) 100%);
}

.project-top-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.project-cat-tag {
    background: rgba(15, 43, 72, 0.88);
    border: 1px solid rgba(184, 142, 68, 0.4);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.project-loc-tag {
    background: rgba(12, 35, 60, 0.75);
    color: #ffffff;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
}

.project-loc-tag i {
    color: #e2c082;
}

.project-box-info {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.project-box-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-box-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-box-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.project-view-details {
    color: #e2c082;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-quick-zoom-btn {
    background: rgba(255, 255, 255, 0.15);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.project-quick-zoom-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Enhanced Archive Photo Stream with Lightbox */
.archive-stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.archive-photo-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.1);
    box-shadow: 0 4px 15px rgba(15, 39, 66, 0.04);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.archive-photo-card:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(15, 43, 72, 0.12), 0 0 15px rgba(184, 142, 68, 0.2);
    z-index: 2;
}

.archive-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 35, 60, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(3px);
}

.archive-photo-card:hover .archive-photo-overlay {
    opacity: 1;
}

.archive-photo-overlay i {
    font-size: 1.5rem;
    color: #ffffff;
    background: var(--primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    transform: scale(0.85);
    transition: transform 0.3s;
}

.archive-photo-card:hover .archive-photo-overlay i {
    transform: scale(1);
}

.archive-photo-tag {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

/* Workshop Video Reel Showcase */
.video-showcase-section {
    padding: 70px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-subtle);
}

.video-showcase-section h2 {
    color: var(--navy-deep) !important;
    font-weight: 900;
}

.video-showcase-section p {
    color: var(--text-body) !important;
}

.video-showcase-section[style*="linear-gradient"] h2 {
    color: #ffffff !important;
}

.video-showcase-section[style*="linear-gradient"] p {
    color: #cbd5e1 !important;
}

.video-reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.video-reel-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.1);
    box-shadow: 0 10px 30px rgba(15, 39, 66, 0.08);
}

.video-reel-card video {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.video-reel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(12, 35, 60, 0.85);
    border: 1px solid var(--primary);
    color: #e2c082;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.video-reel-caption {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 39, 66, 0.08);
}

.video-reel-caption h5 {
    font-size: 1rem;
    color: var(--navy-deep);
    font-weight: 800;
    margin-bottom: 4px;
}

.video-reel-caption p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 0;
}

/* Advanced Global Lightbox Modal */
.modern-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(5, 6, 10, 0.94);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modern-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox-dialog {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-frame {
    position: relative;
    max-width: 85vw;
    max-height: 75vh;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.2);
    background: #0d0f15;
}

.lightbox-img-frame img {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

.lightbox-bar {
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    color: #fff;
    padding: 0 10px;
}

.lightbox-caption-text {
    font-size: 1rem;
    font-weight: 700;
    color: #f0f3fa;
}

.lightbox-counter {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.lightbox-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lightbox-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.lightbox-whatsapp-btn:hover {
    background: #20ba59;
    color: #fff;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    left: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.lightbox-close-btn:hover {
    color: var(--primary);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 24, 34, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
}

.lightbox-nav-btn:hover {
    background: var(--primary);
    color: #000;
}

.lightbox-prev-btn {
    right: -60px;
}

.lightbox-next-btn {
    left: -60px;
}

@media (max-width: 900px) {
    .modern-hero-title { font-size: 2.1rem; }
    .luxury-services-grid { grid-template-columns: 1fr; }
    .projects-masonry-grid { grid-template-columns: 1fr; }
    .luxury-cta-banner { flex-direction: column; text-align: center; padding: 35px 20px; }
    .cta-banner-actions { justify-content: center; width: 100%; flex-direction: column; }
    .lightbox-prev-btn { right: 10px; }
    .lightbox-next-btn { left: 10px; }
    .lightbox-close-btn { top: -40px; }
}

@media (max-width: 420px) {
    .service-actions-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .service-card-header {
        flex-direction: row;
    }
}

/* ========================================================
   MODERN LUXURY CONTACT PAGE STYLES
   ======================================================== */
.contact-luxury-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 70px;
}

.contact-channels-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-channel-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.contact-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-channel-card:hover .contact-channel-icon {
    background: var(--navy-deep);
    color: #ffffff;
    transform: scale(1.08);
}

.contact-channel-card.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.25);
}

.contact-channel-card.whatsapp-card:hover {
    border-color: #25d366;
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.15);
}

.contact-channel-card.whatsapp-card .contact-channel-icon {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.contact-channel-card.whatsapp-card:hover .contact-channel-icon {
    background: #25d366;
    color: #fff;
}

.contact-channel-info {
    flex-grow: 1;
}

.contact-channel-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.contact-channel-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-channel-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: transform 0.2s;
}

.contact-channel-card.whatsapp-card .contact-channel-action {
    color: #25d366;
}

.contact-channel-card:hover .contact-channel-action {
    transform: translateX(-4px);
}

/* Contact Map Card */
.contact-map-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-map-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(15, 39, 66, 0.08);
}

.contact-map-header h4 {
    color: var(--navy-deep);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-map-header h4 i {
    color: var(--primary);
}

.contact-map-link {
    font-size: 0.85rem;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.contact-map-link:hover {
    text-decoration: underline;
}

.contact-map-frame {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
    filter: none;
}

/* Luxury Form Card */
.luxury-contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.luxury-contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-card-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.form-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 28px;
}

.form-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
    margin-bottom: 18px;
}

.form-group-full {
    grid-column: span 2;
}

.form-field-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-field-wrap label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-field-wrap label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid rgba(15, 39, 66, 0.16);
    border-radius: 12px;
    padding: 13px 42px 13px 16px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-with-icon textarea {
    padding: 13px 42px 13px 16px;
    resize: vertical;
    min-height: 110px;
}

.input-with-icon i.field-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s;
}

.input-with-icon textarea ~ i.field-icon {
    top: 22px;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 142, 68, 0.15);
}

.input-with-icon input:focus ~ i.field-icon,
.input-with-icon select:focus ~ i.field-icon,
.input-with-icon textarea:focus ~ i.field-icon {
    color: var(--primary-dark);
}

.btn-form-submit {
    width: 100%;
    padding: 15px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b88e44 0%, #9e7530 100%);
    border: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 18px rgba(184, 142, 68, 0.3);
    margin-top: 10px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(184, 142, 68, 0.45);
    background: linear-gradient(135deg, #c59b4f 0%, #a87d37 100%);
    color: #ffffff;
}

.btn-form-submit i {
    transition: transform 0.3s;
}

.btn-form-submit:hover i {
    transform: translateX(-5px);
}

.form-whatsapp-alternative {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-body);
}

.form-whatsapp-alternative a {
    color: #25d366;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-whatsapp-alternative a:hover {
    text-decoration: underline;
}

/* ========================================================
   MODERN LUXURY BLOG & ARTICLE STYLES
   ======================================================== */
.blog-search-toolbar {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.blog-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    max-width: 440px;
}

.blog-search-input-wrap {
    position: relative;
    flex-grow: 1;
}

.blog-search-input-wrap input {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid rgba(15, 39, 66, 0.15);
    border-radius: 10px;
    padding: 12px 40px 12px 16px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.blog-search-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.blog-search-input-wrap i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.95rem;
}

.btn-blog-search {
    background: var(--navy-deep);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-blog-search:hover {
    background: var(--primary);
    color: #0a1c30;
    transform: translateY(-2px);
}

.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-filter-pill {
    padding: 8px 16px;
    border-radius: 30px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 39, 66, 0.1);
    color: var(--navy-deep);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-filter-pill:hover,
.blog-filter-pill.active {
    background: var(--navy-deep);
    color: #ffffff;
    border-color: var(--navy-deep);
    box-shadow: 0 4px 12px rgba(15, 39, 66, 0.2);
}

/* Modern Editorial Blog Cards Grid */
.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 1100px) {
    .modern-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

@media (max-width: 680px) {
    .modern-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.modern-blog-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.09);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 39, 66, 0.04);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.modern-blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 149, 88, 0.5);
    box-shadow: 0 20px 45px rgba(15, 39, 66, 0.12);
}

.modern-blog-card.card-lead-latest {
    border-color: rgba(184, 149, 88, 0.35);
    box-shadow: 0 8px 30px rgba(184, 149, 88, 0.1);
}

.blog-card-media {
    position: relative;
    height: 235px;
    width: 100%;
    overflow: hidden;
    background: #edf2f7;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 39, 66, 0.55) 0%, rgba(15, 39, 66, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.blog-card-cat-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15, 39, 66, 0.88);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-card-highlight-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #c89b3c 0%, #a27b2c 100%);
    color: #ffffff;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(162, 123, 44, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
    padding-bottom: 2px;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary);
    font-size: 0.82rem;
}

.blog-card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.12rem !important;
    font-weight: 800 !important;
    color: var(--navy-deep) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    position: static !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: calc(1.12rem * 1.55 * 2) !important;
    max-height: calc(1.12rem * 1.55 * 2) !important;
    transition: color 0.25s ease;
}

.blog-card-title::after,
.blog-card-title::before {
    display: none !important;
    content: none !important;
}

.modern-blog-card:hover .blog-card-title {
    color: var(--primary) !important;
}

.blog-card-excerpt {
    font-size: 0.88rem !important;
    color: #64748b !important;
    line-height: 1.65 !important;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: calc(0.88rem * 1.65 * 2) !important;
    max-height: calc(0.88rem * 1.65 * 2) !important;
    flex-grow: 0 !important;
}

.blog-card-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(15, 39, 66, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-card-footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.blog-card-footer-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-footer-info i {
    color: #94a3b8;
    font-size: 0.82rem;
}

.blog-read-link {
    color: var(--navy-deep);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.blog-read-link i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.modern-blog-card:hover .blog-read-link {
    color: var(--primary);
}

.modern-blog-card:hover .blog-read-link i {
    transform: translateX(-4px);
}

/* Modern Pagination */
.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0 20px;
}

.page-num-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.15);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.page-num-btn:hover,
.page-num-btn.active {
    background: var(--navy-deep);
    color: #ffffff;
    border-color: var(--navy-deep);
    box-shadow: 0 4px 15px rgba(15, 39, 66, 0.25);
}

/* ========================================================
   MODERN ARTICLE DETAIL PAGE STYLES
   ======================================================== */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    margin-bottom: 70px;
}

.article-main-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 22px;
    overflow: hidden;
    padding: 38px;
    box-shadow: var(--shadow-card);
}

.article-header-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 39, 66, 0.08);
    margin-bottom: 25px;
}

.article-meta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-meta-group span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-meta-group i {
    color: var(--primary);
}

.article-social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-social-share span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.share-icon-btn:hover {
    transform: scale(1.1);
}

.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-linkedin { background: #0077b5; }
.share-x { background: #222; }

.article-hero-media {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(15, 39, 66, 0.1);
    box-shadow: var(--shadow-card);
}

.article-hero-media img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.article-body-text {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.95;
    margin-bottom: 40px;
}

.article-body-text p {
    margin-bottom: 22px;
}

.article-body-text h2, 
.article-body-text h3 {
    color: var(--navy-deep);
    font-weight: 800;
    margin: 32px 0 16px;
    line-height: 1.4;
}

.article-body-text h2 {
    font-size: 1.5rem;
    border-right: 4px solid var(--primary);
    padding-right: 12px;
}

.article-body-text h3 {
    font-size: 1.3rem;
}

.article-body-text blockquote {
    background: #f8fafc;
    border-right: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
    color: var(--navy-deep);
    font-style: italic;
    font-size: 1.12rem;
}

.article-body-text ul, 
.article-body-text ol {
    margin: 20px 0 24px 20px;
    padding-right: 20px;
}

.article-body-text li {
    margin-bottom: 10px;
}

/* In-Article Action CTA */
.article-inner-cta {
    background: linear-gradient(135deg, rgba(15, 43, 72, 0.04) 0%, rgba(184, 142, 68, 0.06) 100%);
    border: 1px solid rgba(15, 43, 72, 0.1);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.article-inner-cta h3 {
    color: var(--navy-deep);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.article-inner-cta p {
    color: var(--text-body);
    font-size: 0.98rem;
    max-width: 580px;
    margin: 0 auto 20px;
}

.article-author-box {
    background: #f8fafc;
    border: 1px solid rgba(15, 43, 72, 0.08);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.author-avatar-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b88e44 0%, #9e7530 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.author-meta h4 {
    color: var(--navy-deep);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-meta p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

/* Sidebar Widgets */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.sidebar-widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 39, 66, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-title i {
    color: var(--primary);
}

.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.sidebar-article-item:hover {
    transform: translateX(-4px);
}

.sidebar-art-thumb {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.sidebar-art-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-art-content {
    flex-grow: 1;
}

.sidebar-art-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.sidebar-article-item:hover .sidebar-art-title {
    color: var(--primary-dark);
}

.sidebar-art-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-services-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 39, 66, 0.08);
    color: var(--navy-deep);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-service-link:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: #ffffff;
    transform: translateX(-3px);
}

.sidebar-service-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.sidebar-service-link:hover i {
    transform: translateX(-3px);
}

/* Responsive Media Queries for Contact & Blog */
@media (max-width: 992px) {
    .contact-luxury-layout {
        grid-template-columns: 1fr;
    }
    .blog-featured-hero {
        grid-template-columns: 1fr;
    }
    .blog-featured-media {
        min-height: 250px;
    }
    .article-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-inputs-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .luxury-contact-form-card {
        padding: 26px 20px;
    }
    .article-main-card {
        padding: 24px 18px;
    }
    .article-header-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-featured-content {
        padding: 25px 20px;
    }
    .blog-search-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-search-form {
        max-width: 100%;
    }
}