/* === TRUST CARD (PURE CSS PREMIUM ANIMATION) === */
.trust-card {
    background: linear-gradient(145deg, #ffffff, #f8f6f1);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(200,167,90,0.15);
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(40px) scale(0.96);

    animation: premiumFade 0.8s ease forwards;

    transition: 
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.trust-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* === SPACING REFINEMENT === */

/* Text spacing */
.trust-card p {
    margin-top: 10px;
    margin-bottom: 0;
}

.trust-card h3 {
    margin-top: 12px;
    margin-bottom: 6px;
}

/* Icon spacing */
.trust-card p:first-child {
    margin-bottom: 10px;
    font-size: 26px;
}

/* Equal card height */
.trust-card {
    min-height: 180px;
}


/* ✨ STAGGER (no JS needed) */
.trust-card:nth-child(1) { animation-delay: 0.2s; }
.trust-card:nth-child(2) { animation-delay: 0.4s; }
.trust-card:nth-child(3) { animation-delay: 0.6s; }
.trust-card:nth-child(4) { animation-delay: 0.8s; }

/* Fade animation */
@keyframes premiumFade {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover (luxury feel) */
.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 0 15px rgba(200,167,90,0.4),
        0 0 30px rgba(200,167,90,0.2);
}

/* Icon animation */
.trust-card p:first-child {
    transition: transform 0.3s ease;
}

.trust-card:hover p:first-child {
    transform: scale(1.2);
}

/* Heading animation */
.trust-card h3 {
    transition: all 0.3s ease;
}

.trust-card:hover h3 {
    letter-spacing: 1px;
}



.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at top left, rgba(200,167,90,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c8a75a, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover::after {
    opacity: 1;
}


/* === PREMIUM SCROLL FADE === */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* === SECTION SPACING === */

.trust-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* === CARD GAP === */
.wp-block-columns {
    gap: 24px;
}


/* === PREMIUM BUTTON STYLE === */
.wp-block-button__link {
    background: linear-gradient(145deg, #c8a75a, #a8893d);
    color: #ffffff;
    border-radius: 30px;
    padding: 14px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(200,167,90,0.25);
}

/* Hover effect */
.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 25px rgba(200,167,90,0.35),
        0 0 15px rgba(200,167,90,0.25);
}


/* === PREMIUM TYPOGRAPHY SYSTEM === */

/* Headings (luxury feel) */
h1, h2, h3 {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.5px;
}

/* Body text (clean modern) */
p, span {
    font-family: "Inter", sans-serif;
}

/* Trust card refinement */
.trust-card h3 {
    font-weight: 600;
    font-size: 18px;
    color: #3a2f1a;
}

.trust-card p {
    font-size: 14.5px;
    color: #6e5a2b;
    line-height: 1.6;
}


/* === HERO REFINEMENT === */
.wp-block-group:first-of-type {
    border-radius: 16px;
    overflow: hidden;
}

/* Headline polish */
.wp-block-group:first-of-type h1 {
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Subtext polish */
.wp-block-group:first-of-type p {
    opacity: 0.85;
}

html {
    scroll-behavior: smooth;
}

/* Section spacing refinement */
.wp-block-group {
    margin-bottom: 20px;
}

/* Soft background contrast */
body {
    background: #f7f5f0;
}


/* Slight page fade-in */
body {
    animation: pageFade 0.6s ease;
}

@keyframes pageFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* === LUXURY SECTION DIVIDER === */
.wp-block-group {
    position: relative;
}

.wp-block-group:not(:last-child)::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin: 50px auto 0;
    background: rgba(200,167,90,0.4);
}


/* === LUXURY SECTION DIVIDER === */
.wp-block-group {
    position: relative;
}

.wp-block-group:not(:last-child)::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin: 50px auto 0;
    background: rgba(200,167,90,0.4);
}


/* === TYPOGRAPHY RHYTHM === */
h1, h2, h3 {
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}


h2 {
    font-size: 28px;
}


/* === HERO REFINED (TARGETED) === */
.hero-section {
    border-radius: 16px;
    overflow: hidden;
}

.hero-section h1 {
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-section p {
    opacity: 0.85;
}


@media (max-width: 768px) {
    .trust-card {
        padding: 24px 18px;
        min-height: auto;
    }
}


@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .trust-card h3 {
        font-size: 17px;
    }

    .trust-card p {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .wp-block-button__link {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}


@media (max-width: 768px) {
    .wp-block-columns {
        gap: 16px;
    }
}


@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }
}


@media (max-width: 768px) {
    .trust-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}


/* Clean WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

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

