:root {
    --cp-black: #070707;
    --cp-charcoal: #111111;
    --cp-soft-black: #181818;
    --cp-gold: #d6a93b;
    --cp-gold-light: #f1d27a;
    --cp-cream: #f8f3e8;
    --cp-white: #ffffff;
    --cp-muted: #6f6f6f;
    --cp-border: rgba(214, 169, 59, 0.22);
    --cp-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cp-charcoal);
    background: var(--cp-white);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.text-gold {
    color: var(--cp-gold) !important;
}

.bg-cream {
    background: var(--cp-cream);
}

.section-padding {
    padding: 95px 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--cp-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--cp-muted);
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cp-charcoal);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold {
    background: linear-gradient(135deg, var(--cp-gold), var(--cp-gold-light));
    border: 1px solid var(--cp-gold);
    color: var(--cp-black);
    box-shadow: 0 12px 30px rgba(214, 169, 59, 0.25);
}

.btn-gold:hover {
    background: var(--cp-gold-light);
    color: var(--cp-black);
    transform: translateY(-2px);
}

.btn-dark-gold {
    background: var(--cp-black);
    border: 1px solid var(--cp-black);
    color: var(--cp-gold);
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 28px;
}

.btn-dark-gold:hover {
    background: var(--cp-gold);
    border-color: var(--cp-gold);
    color: var(--cp-black);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background: var(--cp-black);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(214, 169, 59, 0.25);
}

.top-bar i {
    color: var(--cp-gold);
}

/* Navbar */
.main-navbar {
    background: rgba(7, 7, 7, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(214, 169, 59, 0.2);
    padding: 12px 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 10px;
}

.brand-text {
    line-height: 1.1;
}

.brand-name {
    display: block;
    color: var(--cp-gold-light);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-text small {
    color: rgba(255, 255, 255, 0.76);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.68rem;
}

.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--cp-gold-light);
}

.dropdown-menu {
    border-radius: 18px;
    border: 1px solid var(--cp-border);
    box-shadow: var(--cp-shadow);
    padding: 12px;
}

.dropdown-item {
    border-radius: 12px;
    font-weight: 600;
    padding: 10px 14px;
}

.dropdown-item:hover {
    background: var(--cp-cream);
    color: var(--cp-black);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 86vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(214, 169, 59, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(12, 12, 12, 0.9)),
        url("../images/logo.png");
    background-size: 760px, cover, 520px;
    background-repeat: no-repeat;
    background-position: left top, center, 92% center;
    color: var(--cp-white);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(214, 169, 59, 0.24);
    border-radius: 50%;
    right: -160px;
    top: 70px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 169, 59, 0.5), transparent);
    left: 15%;
    bottom: 45px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55));
}

.min-vh-85 {
    min-height: 85vh;
}

.hero-content {
    max-width: 780px;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 5.25rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.hero-text {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
    margin-bottom: 34px;
}

.hero-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-mini-points span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-mini-points i {
    color: var(--cp-gold-light);
    margin-right: 7px;
}

.hero-card {
    position: relative;
    background: rgba(17, 17, 17, 0.72);
    border: 1px solid rgba(214, 169, 59, 0.32);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
}

.hero-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--cp-gold), var(--cp-gold-light));
    color: var(--cp-black);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.hero-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.72);
}

.hero-card-list {
    margin-top: 25px;
}

.hero-card-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.hero-card-list i {
    color: var(--cp-gold-light);
}

/* Trust Pillars */
.trust-pillar-section {
    margin-top: -65px;
    position: relative;
    z-index: 4;
    padding-bottom: 50px;
}

.trust-card {
    background: var(--cp-white);
    padding: 32px 26px;
    border-radius: 26px;
    height: 100%;
    border: 1px solid rgba(214, 169, 59, 0.18);
    box-shadow: var(--cp-shadow);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 169, 59, 0.5);
}

.trust-icon {
    width: 58px;
    height: 58px;
    background: var(--cp-cream);
    color: var(--cp-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 22px;
}

.trust-card h5 {
    font-weight: 800;
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--cp-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* About */
.about-visual {
    position: relative;
    min-height: 430px;
    background:
        linear-gradient(135deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.72)),
        url("../images/logo.png");
    background-size: cover, 70%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--cp-shadow);
    border: 1px solid var(--cp-border);
}

.about-main-box {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 26px;
    padding: 28px;
}

.about-main-box span {
    color: var(--cp-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.about-main-box h3 {
    font-weight: 850;
    margin-top: 10px;
    margin-bottom: 0;
}

.about-floating-box {
    position: absolute;
    top: 35px;
    right: 35px;
    max-width: 235px;
    background: var(--cp-black);
    color: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.35);
    border-radius: 24px;
    padding: 22px;
}

.about-floating-box i {
    color: var(--cp-gold-light);
    font-size: 1.8rem;
}

.about-floating-box p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

/* Services */
.service-card {
    background: var(--cp-white);
    border-radius: 30px;
    padding: 36px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.service-card.featured {
    background: var(--cp-black);
    color: var(--cp-white);
    border-color: rgba(214, 169, 59, 0.35);
}

.service-icon {
    width: 68px;
    height: 68px;
    background: var(--cp-cream);
    color: var(--cp-gold);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 24px;
}

.service-card.featured .service-icon {
    background: rgba(214, 169, 59, 0.12);
    color: var(--cp-gold-light);
}

.service-card h4 {
    font-weight: 850;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--cp-muted);
    margin-bottom: 24px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.72);
}

.service-card a {
    color: var(--cp-gold);
    font-weight: 800;
}

.service-card a i {
    transition: all 0.3s ease;
}

.service-card a:hover i {
    margin-left: 5px;
}

/* Dark Section */
.dark-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(214, 169, 59, 0.13), transparent 28%),
        linear-gradient(135deg, #060606, #151515);
    color: var(--cp-white);
}

.dark-section .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.journey-wrapper {
    display: grid;
    gap: 18px;
}

.journey-step {
    display: grid;
    grid-template-columns: 75px 150px 1fr;
    gap: 18px;
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 24px;
    padding: 22px;
}

.journey-step span {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cp-gold), var(--cp-gold-light));
    color: var(--cp-black);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.journey-step h5 {
    font-weight: 850;
    margin-bottom: 0;
}

.journey-step p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

/* Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.support-item {
    background: var(--cp-white);
    border-radius: 22px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(214, 169, 59, 0.18);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    font-weight: 800;
}

.support-item i {
    width: 48px;
    height: 48px;
    background: var(--cp-black);
    color: var(--cp-gold-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

/* Mission */
.mission-card {
    height: 100%;
    background: var(--cp-black);
    color: var(--cp-white);
    border-radius: 32px;
    padding: 42px;
    border: 1px solid rgba(214, 169, 59, 0.3);
    box-shadow: var(--cp-shadow);
}

.mission-card span {
    color: var(--cp-gold-light);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.mission-card h3 {
    font-size: 1.55rem;
    line-height: 1.45;
    margin-top: 18px;
    margin-bottom: 0;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.78)),
        url("../images/logo.png");
    background-size: cover, 500px;
    background-position: center, right center;
    background-repeat: no-repeat;
    color: var(--cp-white);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 850;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.72);
    padding: 75px 0 25px;
    border-top: 1px solid rgba(214, 169, 59, 0.18);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-brand h5 {
    color: var(--cp-gold-light);
    font-weight: 850;
    margin-bottom: 0;
}

.site-footer h6 {
    color: var(--cp-white);
    font-weight: 850;
    margin-bottom: 18px;
}

.site-footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer a:hover {
    color: var(--cp-gold-light);
}

.footer-contact i {
    color: var(--cp-gold-light);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 45px;
    padding-top: 24px;
    text-align: center;
}

/* Back To Top */
.back-to-top {
    position: fixed;
    width: 46px;
    height: 46px;
    right: 22px;
    bottom: 22px;
    background: var(--cp-gold);
    color: var(--cp-black);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.back-to-top.show {
    display: flex;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        background-size: 600px, cover, 360px;
        background-position: left top, center, center bottom;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.86);
    }

    .hero-card {
        padding: 28px;
    }

    .trust-pillar-section {
        margin-top: 0;
        padding-top: 45px;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-step {
        grid-template-columns: 60px 1fr;
    }

    .journey-step p {
        grid-column: 2 / -1;
    }
}

@media (max-width: 767px) {
    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-mini-points {
        display: grid;
        gap: 10px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-floating-box {
        display: none;
    }

    .about-main-box {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .mission-card {
        padding: 30px;
    }

    .journey-step {
        display: block;
    }

    .journey-step span {
        margin-bottom: 14px;
    }

    .journey-step h5 {
        margin-bottom: 8px;
    }
	
	/* Inner Pages */
.page-hero {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(214, 169, 59, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(13, 13, 13, 0.9)),
        url("../images/logo.png");
    background-size: 720px, cover, 520px;
    background-repeat: no-repeat;
    background-position: left top, center, 92% center;
    color: var(--cp-white);
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 50%;
    right: -190px;
    top: 50px;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.page-hero p {
    max-width: 760px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 30px;
}

.page-hero-card {
    background: rgba(17, 17, 17, 0.76);
    border: 1px solid rgba(214, 169, 59, 0.32);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.page-hero-card img {
    width: 135px;
    height: 135px;
    object-fit: contain;
    border-radius: 22px;
    margin-bottom: 24px;
}

.page-hero-card h4 {
    font-weight: 850;
    margin-bottom: 14px;
}

.page-hero-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

.page-hero-icon {
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, var(--cp-gold), var(--cp-gold-light));
    color: var(--cp-black);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    margin-bottom: 24px;
}

.value-card {
    height: 100%;
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.value-card i {
    width: 62px;
    height: 62px;
    background: var(--cp-cream);
    color: var(--cp-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 22px;
}

.value-card h5 {
    font-weight: 850;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--cp-muted);
    margin-bottom: 0;
}

.dark-info-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(214, 169, 59, 0.2);
    border-radius: 28px;
    padding: 30px;
}

.dark-info-card i {
    width: 58px;
    height: 58px;
    background: rgba(214, 169, 59, 0.12);
    color: var(--cp-gold-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 22px;
}

.dark-info-card h5 {
    color: var(--cp-white);
    font-weight: 850;
    margin-bottom: 12px;
}

.dark-info-card p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.service-detail-card {
    height: 100%;
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.16);
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.service-detail-card.featured {
    background: var(--cp-black);
    color: var(--cp-white);
    border-color: rgba(214, 169, 59, 0.35);
}

.service-detail-card h3 {
    font-weight: 850;
    margin-bottom: 15px;
}

.service-detail-card p {
    color: var(--cp-muted);
}

.service-detail-card.featured p {
    color: rgba(255, 255, 255, 0.74);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 30px;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--cp-muted);
    font-weight: 600;
}

.service-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cp-gold);
}

.service-detail-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.76);
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.16);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.process-item span {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--cp-gold), var(--cp-gold-light));
    color: var(--cp-black);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.process-item h5 {
    font-weight: 850;
    margin-bottom: 8px;
}

.process-item p {
    color: var(--cp-muted);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-hero {
        padding: 90px 0;
        background-size: 620px, cover, 360px;
        background-position: left top, center, center bottom;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: 2.55rem;
    }

    .page-hero-card {
        padding: 28px;
    }

    .process-item {
        grid-template-columns: 1fr;
    }
	
	/* Detailed Service Pages */
.service-page-hero {
    min-height: auto;
}

.service-intro-card {
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
}

.service-intro-card h3 {
    font-weight: 850;
    margin-bottom: 15px;
}

.service-intro-card p {
    color: var(--cp-muted);
    margin-bottom: 24px;
}

.mini-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mini-check-grid span {
    background: var(--cp-cream);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 16px;
    padding: 13px 15px;
    font-weight: 800;
    color: var(--cp-charcoal);
}

.mini-check-grid i {
    color: var(--cp-gold);
    margin-right: 8px;
}

.feature-service-card {
    height: 100%;
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.16);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.065);
    transition: all 0.3s ease;
}

.feature-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
    border-color: rgba(214, 169, 59, 0.42);
}

.feature-service-card i {
    width: 64px;
    height: 64px;
    background: var(--cp-cream);
    color: var(--cp-gold);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
}

.feature-service-card h4 {
    font-weight: 850;
    margin-bottom: 14px;
}

.feature-service-card p {
    color: var(--cp-muted);
    margin-bottom: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--cp-cream);
    color: var(--cp-black);
}

@media (max-width: 767px) {
    .service-intro-card {
        padding: 28px;
    }

    .mini-check-grid {
        grid-template-columns: 1fr;
    }

    .feature-service-card {
        padding: 28px;
    }
	
	/* Contact & Policy Pages */
.contact-info-stack {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.055);
}

.contact-info-item i {
    width: 58px;
    height: 58px;
    background: var(--cp-black);
    color: var(--cp-gold-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.contact-info-item h5 {
    font-weight: 850;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--cp-muted);
}

.contact-form-card {
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 34px;
    padding: 42px;
    box-shadow: var(--cp-shadow);
}

.contact-form-card h3 {
    font-weight: 850;
    margin-bottom: 10px;
}

.contact-form-card p {
    color: var(--cp-muted);
}

.contact-form-card .form-label {
    font-weight: 800;
    color: var(--cp-charcoal);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding-left: 16px;
    font-weight: 600;
}

.contact-form-card textarea.form-control {
    min-height: 150px;
    padding-top: 14px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--cp-gold);
    box-shadow: 0 0 0 0.2rem rgba(214, 169, 59, 0.18);
}

.form-note {
    font-size: 0.9rem;
    margin-top: 16px;
    margin-bottom: 0;
}

.small-page-hero {
    padding: 95px 0;
}

.policy-card {
    max-width: 940px;
    margin: 0 auto;
    background: var(--cp-white);
    border: 1px solid rgba(214, 169, 59, 0.18);
    border-radius: 34px;
    padding: 48px;
    box-shadow: var(--cp-shadow);
}

.policy-card h2 {
    font-size: 1.45rem;
    font-weight: 850;
    margin-top: 32px;
    margin-bottom: 12px;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--cp-muted);
}

.policy-date {
    color: var(--cp-gold) !important;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.policy-note {
    background: var(--cp-cream);
    border-left: 4px solid var(--cp-gold);
    border-radius: 18px;
    padding: 20px;
    color: var(--cp-charcoal);
    margin-top: 30px;
}

@media (max-width: 767px) {
    .contact-form-card,
    .policy-card {
        padding: 28px;
    }

    .contact-info-item {
        grid-template-columns: 1fr;
    }

    .small-page-hero {
        padding: 70px 0;
    }
	
	/* Final Polish */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    overflow-x: hidden;
}

::selection {
    background: var(--cp-gold);
    color: var(--cp-black);
}

a,
button,
.btn,
.form-control,
.form-select {
    outline-color: var(--cp-gold);
}

.navbar-toggler {
    border-color: rgba(214, 169, 59, 0.45);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(214, 169, 59, 0.25);
}

.main-navbar .dropdown-menu {
    margin-top: 12px;
}

.hero-actions,
.page-hero-actions {
    position: relative;
    z-index: 5;
}

.cta-section {
    overflow: hidden;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
}

/* Improve mobile menu spacing */
@media (max-width: 991px) {
    .main-navbar .navbar-collapse {
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .main-navbar .nav-link {
        padding: 12px 0 !important;
    }

    .main-navbar .dropdown-menu {
        background: #101010;
        border: 1px solid rgba(214, 169, 59, 0.22);
        box-shadow: none;
    }

    .main-navbar .dropdown-item {
        color: rgba(255, 255, 255, 0.82);
    }

    .main-navbar .dropdown-item:hover,
    .main-navbar .dropdown-item.active {
        background: rgba(214, 169, 59, 0.12);
        color: var(--cp-gold-light);
    }

    .hero-section,
    .page-hero {
        text-align: left;
    }

    .hero-card,
    .page-hero-card {
        max-width: 560px;
    }

    .cta-section .text-lg-end {
        text-align: left !important;
    }
}

/* Small phone polish */
@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-padding {
        padding: 58px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 72px 0 60px;
    }

    .min-vh-85 {
        min-height: auto;
    }

    .hero-title,
    .page-hero h1 {
        letter-spacing: -0.035em;
    }

    .section-heading h2,
    .cta-section h2 {
        letter-spacing: -0.035em;
    }

    .trust-card,
    .service-card,
    .service-detail-card,
    .feature-service-card,
    .value-card,
    .contact-form-card,
    .policy-card,
    .mission-card {
        border-radius: 24px;
    }

    .brand-text small {
        font-size: 0.58rem;
    }

    .brand-name {
        letter-spacing: 0.03em;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

