* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #262626;
    background: #faf7f1;
    line-height: 1.6;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 95px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 22px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav a.active,
.nav a:hover {
    color: #c7a35b;
}

/* Hero */
.hero {
    position: relative;
    padding-top: 120px;
    min-height: 620px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 760px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c7a35b;
    font-weight: 800;
    font-size: 14px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    margin: 10px 0;
}

.hero-content h1 {
    font-size: 58px;
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 4px 18px rgba(0,0,0,.55);
}

.hero p,
.hero-content p {
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
    font-size: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-bottom: 35px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary {
    background: linear-gradient(135deg, #d4af37, #b8892d);
    color: #171717;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn:hover {
    transform: translateY(-3px);
}

.primary:hover {
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.5);
}

.secondary:hover {
    background: rgba(255,255,255,0.12);
}

/* General Sections */
.section {
    padding: 55px 0;
}

.center {
    text-align: center;
}

.section-intro {
    max-width: 680px;
    margin: 0 auto 30px;
}

.page-hero {
    background: #2b2b2b;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.split-section {
    background: #fff;
    padding: 80px 0;
}

.split {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 45px;
    align-items: start;
}

.check-list {
    padding-left: 20px;
}

.check-list li {
    margin-bottom: 10px;
}

/* Trust Section */
.trust-bar {
    background: #f8f5ef;
    padding: 90px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-items div {
    padding: 35px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
    transition: .3s;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-items div:hover {
    transform: translateY(-8px);
}

.trust-items h3 {
    margin-bottom: 12px;
    color: #b98a2c;
    font-size: 1.3rem;
}

.trust-items p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Home Monument Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cards .monument-card {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    padding: 0;
}

.cards .monument-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cards .monument-card:hover {
    transform: translateY(-8px);
    transition: .35s;
    box-shadow: 0 18px 40px rgba(0,0,0,.3);
}

.card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.70),
        rgba(0,0,0,.20),
        rgba(0,0,0,0)
    );
}

.card-overlay h3 {
    font-size: 24px;
    margin: 0 0 12px;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,.9);
}

.card-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.card-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #c7a35b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

.card-btn:hover {
    background: #c7a35b;
    color: #171717;
}

/* Services / Monument Collection */
.section > .container > .monument-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

.section > .container > .monument-card img {
    width: 100%;
    max-width: 520px;
    height: 360px;
    object-fit: contain;
    object-position: center;
    background: #f5f1eb;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    display: block;
    margin: 0 auto;
}

.monument-content h2 {
    margin-bottom: 15px;
    color: #171717;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #c58a17;
    margin-bottom: 25px;
}

.monument-content p {
    line-height: 1.8;
}

.note {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* About */
.about-photo {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.gallery-item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
    transition: .3s;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 24px;
    min-height: 130px;
}

.gallery-info h3 {
    margin-bottom: 10px;
    color: #171717;
}

.gallery-info p {
    color: #555;
    line-height: 1.6;
}

.gallery-item {
    text-decoration: none;
    color: inherit;
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 5000;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
}

.simple-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.simple-gallery .gallery-image-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

.simple-gallery .gallery-image-button img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.simple-gallery .gallery-image-button:hover img {
    transform: scale(1.04);
}

.simple-gallery .image-view-label {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 9px 16px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.simple-gallery .gallery-image-button:hover .image-view-label {
    opacity: 1;
}

@media (max-width: 800px) {

    .simple-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .simple-gallery .gallery-image-button img {
        height: auto;
    }

    .simple-gallery .image-view-label {
        opacity: 1;
    }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-top: 40px;
}

.contact-form label {
    display: block;
    margin-bottom: 18px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

/* Footer */
.site-footer {
    background: #111;
    color: #ddd;
    padding: 55px 0 0;
    border-top: 3px solid #c7a35b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.footer-about,
.footer-social,
.footer-contact {
    min-width: 0;
}

.footer-logo {
    width: 130px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-about p,
.footer-social p,
.footer-contact p {
    color: #ddd;
    line-height: 1.7;
    margin: 0 0 12px;
}

.footer-social h3,
.footer-contact h3 {
    color: #fff;
    margin: 0 0 16px;
}

.footer-facebook-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #b8892d);
    color: #171717 !important;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 20px rgba(212, 175, 55, .25);
    transition: all .3s ease;
}

.footer-facebook-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e0ba42, #c99831);
    color: #171717 !important;
    box-shadow: 0 12px 28px rgba(212, 175, 55, .4);
}

.footer-contact p {
    margin-bottom: 10px;
}

.copyright {
    width: 100%;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 45px;
    padding: 20px 15px;
    color: #aaa;
    font-size: 14px;
}

.copyright a,
.copyright a:visited {
    color: #fff;
    text-decoration: none;
}

.copyright a:hover,
.copyright a:focus {
    color: #c7a35b;
    text-decoration: underline;
}

/* Monument Detail Page */
.monument-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.monument-detail-image img {
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    background: #f5f1eb;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.monument-detail-content h2 {
    margin-top: 0;
    font-size: 36px;
    color: #171717;
}

.monument-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.monument-detail-content p {
    line-height: 1.8;
}

/* Fix homepage service cards */
.section > .container.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.section > .container.cards > .monument-card {
    position: relative;
    display: block;
    height: 450px;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.section > .container.cards > .monument-card img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
}

.section > .container.cards > .monument-card .card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.70) 38%,
        rgba(0, 0, 0, 0.15) 72%,
        rgba(0, 0, 0, 0) 100%
    );
}

@media (max-width: 900px) {
    .section > .container.cards {
        grid-template-columns: 1fr;
    }

    .section > .container.cards > .monument-card {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
}

/* Move the CTA button up slightly */
.cta .btn {
    margin-top: -10px;
}

/* Add space between CTA button and footer */
.cta {
    padding-bottom: 70px;
}

/* Professional Gallery Page */
.gallery-hero .eyebrow {
    margin-bottom: 8px;
}

.gallery-hero p:last-child {
    width: min(680px, 92%);
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.7;
}

.gallery-section {
    padding: 85px 0;
    background: #faf7f1;
}

.gallery-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.gallery-heading h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    line-height: 1.2;
}

.gallery-heading p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.portfolio-card {
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.gallery-image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 330px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f3efe8;
    border: none;
    cursor: pointer;
}

.gallery-image-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .gallery-image-button img {
    transform: scale(1.04);
}

.image-view-label {
    position: absolute;
    left: 50%;
    bottom: 20px;
    padding: 10px 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-image-button:hover .image-view-label,
.gallery-image-button:focus .image-view-label {
    opacity: 1;
    transform: translate(-50%, 0);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-type {
    margin: 0 0 7px;
    color: #b8892d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.portfolio-info h3 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 23px;
    line-height: 1.3;
}

.portfolio-info > p:not(.portfolio-type) {
    min-height: 78px;
    margin: 0 0 20px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.7;
}

.portfolio-link {
    display: inline-block;
    color: #a87512;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.portfolio-link:hover {
    color: #171717;
    transform: translateX(4px);
}

.gallery-cta {
    padding: 75px 0 85px;
    background: #fff;
    text-align: center;
    border-top: 1px solid #eee7dc;
}

.gallery-cta h2 {
    margin: 6px 0 14px;
    font-size: 38px;
}

.gallery-cta p:not(.eyebrow) {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.93);
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.gallery-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-content p {
    margin: 18px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 28px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: none;
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
}

/* Professional Contact Page */
.contact-hero p:last-child {
    width: min(760px, 92%);
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.7;
}

.contact-page {
    padding: 90px 0;
    background: #faf7f1;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.contact-details h2,
.consultation-card h2 {
    margin: 6px 0 18px;
    color: #171717;
    font-size: 38px;
    line-height: 1.2;
}

.contact-intro,
.consultation-card > p {
    color: #555;
    font-size: 17px;
    line-height: 1.75;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    color: #333;
    background: #fff;
    border: 1px solid #eee7dc;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

a.contact-method {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

a.contact-method:hover {
    transform: translateY(-3px);
    border-color: #c7a35b;
}

.contact-method-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #171717;
    background: linear-gradient(135deg, #d4af37, #b8892d);
    border-radius: 50%;
    font-size: 18px;
}

.contact-method strong {
    display: block;
    margin-bottom: 3px;
    color: #171717;
}

.contact-note {
    margin-top: 28px;
    padding: 24px;
    background: #242424;
    border-left: 4px solid #d4af37;
    border-radius: 12px;
}

.contact-note h3 {
    margin: 0 0 8px;
    color: #fff;
}

.contact-note p {
    margin: 0;
    color: #ddd;
    line-height: 1.7;
}

.consultation-card {
    padding: 38px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.professional-contact-form {
    margin-top: 28px;
}

.professional-contact-form label {
    display: block;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

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

.professional-contact-form input,
.professional-contact-form select,
.professional-contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    color: #222;
    background: #faf8f4;
    border: 1px solid #dcd5ca;
    border-radius: 9px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.professional-contact-form input:focus,
.professional-contact-form select:focus,
.professional-contact-form textarea:focus {
    border-color: #c7a35b;
    box-shadow: 0 0 0 3px rgba(199, 163, 91, 0.18);
}

.professional-contact-form textarea {
    min-height: 155px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    margin-top: 2px;
    text-align: center;
}

.form-response-note {
    margin: 16px 0 0;
    color: #666;
    text-align: center;
    font-size: 14px;
}

.form-response-note a {
    color: #a87512;
    font-weight: 700;
}

.contact-map-section {
    padding: 75px 0 90px;
    background: #fff;
}

.contact-map-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-map-heading h2 {
    margin: 5px 0 0;
    font-size: 38px;
}

.contact-map {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.contact-map iframe {
    display: block;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.contact-trust-section {
    padding: 80px 0 90px;
    background: #f3efe8;
}

.contact-trust-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-trust-heading h2 {
    margin: 6px 0 0;
    font-size: 38px;
}

.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.contact-trust-grid > div {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-trust-grid span {
    color: #b8892d;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-trust-grid h3 {
    margin: 12px 0 10px;
    color: #171717;
    font-size: 22px;
}

.contact-trust-grid p {
    margin: 0;
    color: #5b5b5b;
    line-height: 1.7;
}

/* Contact Form Messages */
.form-message {
    margin: 22px 0;
    padding: 18px 20px;
    border-radius: 10px;
    line-height: 1.6;
}

.form-message strong {
    display: block;
    margin-bottom: 4px;
}

.form-message-success {
    color: #245c32;
    background: #edf8ef;
    border: 1px solid #a9d9b2;
}

.form-message-error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

.form-message-error a {
    color: inherit;
    font-weight: 700;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Interactive Monument Builder */
.monument-builder {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.builder-image > img {
    display: block;
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    background: #f5f1eb;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.included-box {
    margin-top: 25px;
    padding: 26px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.included-box h3 {
    margin: 0 0 14px;
    color: #171717;
}

.included-box ul {
    margin: 0;
    padding-left: 22px;
}

.included-box li {
    margin-bottom: 8px;
}

.builder-panel {
    padding: 38px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

.builder-panel h2 {
    margin: 6px 0 14px;
    font-size: 38px;
    line-height: 1.2;
}

.builder-intro {
    margin-bottom: 26px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.standard-size-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.standard-size-box > div {
    padding: 18px;
    background: #f7f3ec;
    border: 1px solid #e6dccb;
    border-radius: 12px;
}

.standard-size-box span {
    display: block;
    margin-bottom: 4px;
    color: #777;
    font-size: 13px;
}

.standard-size-box strong {
    color: #222;
    font-size: 17px;
}

.dimension-controls {
    display: grid;
    gap: 18px;
}

.dimension-control {
    padding: 20px;
    background: #faf8f4;
    border: 1px solid #e3dbcf;
    border-radius: 14px;
}

.dimension-control label {
    display: block;
    margin-bottom: 12px;
    color: #222;
    font-weight: 700;
}

.dimension-input {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    gap: 12px;
    align-items: center;
}

.dimension-input > div {
    text-align: center;
}

.dimension-input input {
    width: 80px;
    padding: 8px;
    color: #171717;
    background: transparent;
    border: none;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    outline: none;
}

.dimension-input span {
    display: block;
    color: #777;
    font-size: 13px;
}

.dimension-button {
    width: 48px;
    height: 48px;
    color: #171717;
    background: linear-gradient(135deg, #d4af37, #b8892d);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.dimension-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(212,175,55,.35);
}

.price-summary {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid #e0d6c6;
    border-radius: 16px;
}

.price-summary-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    color: #fff;
    background: #1d1d1d;
}

.price-summary-heading span {
    font-size: 16px;
    font-weight: 700;
}

.price-summary-heading strong {
    color: #e0b63b;
    font-size: 32px;
}

.price-breakdown {
    padding: 12px 22px;
    background: #fff;
}

.price-breakdown > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid #eee7dc;
}

.price-breakdown > div:last-child {
    border-bottom: none;
}

.builder-notice {
    margin-top: 22px;
    padding: 18px;
    color: #5c4b28;
    background: #fff7df;
    border-left: 4px solid #d4af37;
    border-radius: 10px;
    line-height: 1.65;
}

.builder-quote-button {
    display: block;
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

/* Live Monument Preview */
.monument-preview-stage {
    position: sticky;
    top: 140px;
    min-height: auto;
    padding: 55px 30px 45px;
    overflow: hidden;
    background:
        linear-gradient(
            to bottom,
            #f9f6f0 0%,
            #ece6dc 75%,
            #d8d0c3 75%,
            #d8d0c3 100%
        );
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.monument-preview-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    color: #171717;
    background: #d4af37;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#monument-preview-image {
    display: block;
    width: 100%;
    max-width: 460px;
    max-height: 490px;
    margin: 30px auto 0;
    object-fit: contain;
    transform-origin: center bottom;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.25));
}

.preview-disclaimer {
    position: static;
    margin: 24px 0 0;
    color: #686868;
    font-size: 12px;
}

/* Automatic monument gallery numbering */
.simple-gallery {
    counter-reset: monument-number;
}

.simple-gallery .gallery-image-button {
    counter-increment: monument-number;
}

.simple-gallery .gallery-image-button::before {
    content: "#" counter(monument-number);

    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;

    background: #111;
    color: #d4af37;

    font-size: 16px;
    font-weight: 700;

    padding: 8px 13px;
    border-radius: 6px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 800px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 92%;
        max-width: 92%;
    }

    /* Mobile Header */
    .nav-wrap {
        flex-direction: column;
        gap: 18px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    /* Mobile Hero */
    .hero {
        min-height: 820px;
        height: auto;
        width: 100%;
        padding-top: 70px;
        padding-bottom: 70px;
        text-align: center;
    }

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

    .hero-content {
        width: 92%;
        max-width: 92%;
        margin: 0 auto;
        text-align: center;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 38px;
    }

    .hero p,
    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        padding-bottom: 0;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0 0 16px;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    /* Stack General Grids */
    .trust-items,
    .cards,
    .gallery-grid,
    .contact-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-items div {
        min-height: auto;
    }

    /* Homepage Monument Cards */
    .cards .monument-card {
        height: 420px;
    }

    /* Services Page Monument Cards */
    .section > .container > .monument-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 24px;
    }

    .section > .container > .monument-card img {
        max-width: 100%;
        height: 280px;
    }

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

    /* Monument Detail Pages */
    .monument-detail {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        width: 100%;
        max-width: 100%;
    }

    .monument-detail-image {
        width: 100%;
        text-align: center;
    }

    .monument-detail-image img {
        display: block;
        width: 100%;
        max-width: 340px;
        height: auto;
        max-height: none;
        margin: 0 auto;
        object-fit: contain;
    }

    .monument-detail-content {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .monument-detail-content h2 {
        margin-top: 0;
        font-size: 32px;
        line-height: 1.2;
    }

    .monument-detail-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .monument-detail-content p {
        font-size: 17px;
        line-height: 1.7;
    }

    .monument-detail-content ul {
        width: 100%;
        margin-left: 0;
        padding-left: 24px;
    }

    .monument-detail-content li {
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .monument-detail-content .btn {
        display: block;
        width: 100%;
        max-width: 340px;
        margin: 25px auto 0;
        text-align: center;
    }

    /* Gallery */
    .gallery-item,
    .contact-form,
    .map-container {
        width: 100%;
        max-width: 100%;
    }

    .gallery-item img {
        height: 260px;
        object-fit: contain;
    }

    .gallery-info {
        padding: 20px;
    }

    img,
    iframe,
    video {
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-facebook-btn {
        width: auto;
        max-width: 280px;
    }

    .copyright {
        margin-top: 35px;
    }
	
	    /* Mobile Gallery Page */
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-heading {
        margin-bottom: 32px;
    }

    .gallery-heading h2 {
        font-size: 31px;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .portfolio-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .gallery-image-button {
        height: 320px;
    }

    .image-view-label {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .portfolio-info {
        padding: 22px;
    }

    .portfolio-info > p:not(.portfolio-type) {
        min-height: auto;
    }

    .gallery-cta {
        padding: 60px 20px 75px;
    }

    .gallery-cta h2 {
        font-size: 31px;
    }

    .gallery-lightbox {
        padding: 18px;
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 18px;
        font-size: 46px;
    }

    .gallery-lightbox-content img {
        max-height: 72vh;
    }
	
	    /* Mobile Contact Page */
    .contact-page {
        padding: 60px 0;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-details h2,
    .consultation-card h2 {
        font-size: 31px;
    }

    .consultation-card {
        padding: 25px 20px;
    }

    .professional-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-method {
        padding: 16px;
    }

    .contact-method-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .contact-map-section {
        padding: 60px 0 70px;
    }

    .contact-map-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-map-heading h2 {
        font-size: 31px;
    }

    .contact-map-heading .btn {
        width: 100%;
        text-align: center;
    }

    .contact-map iframe {
        height: 360px;
    }

    .contact-trust-section {
        padding: 60px 0 70px;
    }

    .contact-trust-heading h2 {
        font-size: 31px;
    }

    .contact-trust-grid {
        grid-template-columns: 1fr;
    }
	
	    /* Mobile Monument Builder */
    .monument-builder {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .builder-panel {
        padding: 25px 20px;
    }

    .builder-panel h2 {
        font-size: 31px;
    }

    .standard-size-box {
        grid-template-columns: 1fr;
    }

    .price-summary-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-summary-heading strong {
        font-size: 30px;
    }

    .dimension-input {
        grid-template-columns: 44px 1fr 44px;
    }

    .dimension-button {
        width: 44px;
        height: 44px;
    }

    .price-breakdown > div {
        align-items: flex-start;
    }
}

/* ========================================
   ETERNAL 1 AUTOMATIC GALLERY - FINAL
======================================== */

.auto-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}

.auto-gallery-item {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    height: 360px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    border-radius: 14px !important;

    overflow: hidden !important;

    background: #eeeeee !important;

    cursor: pointer !important;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.auto-gallery-item img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;
    object-position: center !important;

    margin: 0 !important;
    padding: 0 !important;

    transition: transform 0.3s ease !important;
}

.auto-gallery-item:hover img {
    transform: scale(1.04) !important;
}


/* Number badge */

.auto-gallery-item .gallery-number {
    position: absolute !important;

    top: 14px !important;
    left: 14px !important;

    z-index: 10 !important;

    display: block !important;

    padding: 8px 13px !important;

    background: #171717 !important;
    color: #d4af37 !important;

    border-radius: 7px !important;

    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.30) !important;
}


/* View Larger */

.auto-gallery-item .gallery-view-label {
    position: absolute !important;

    left: 50% !important;
    bottom: 15px !important;

    transform: translateX(-50%) !important;

    z-index: 10 !important;

    display: block !important;

    padding: 8px 15px !important;

    background: rgba(0, 0, 0, 0.78) !important;
    color: #ffffff !important;

    border-radius: 30px !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;

    opacity: 0 !important;

    transition: opacity 0.25s ease !important;
}

.auto-gallery-item:hover .gallery-view-label {
    opacity: 1 !important;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .auto-gallery {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .auto-gallery {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .auto-gallery-item {
        height: 320px !important;
    }

    .auto-gallery-item .gallery-view-label {
        opacity: 1 !important;
    }

}
