/* ═══════════════════════════════════════════════════════
   متغیرهای رنگ — هماهنگ با index.html
═══════════════════════════════════════════════════════ */
:root {
    --gold:        #c9a84c;   /* طلایی اصلی */
    --gold-light:  #e2c47a;   /* طلایی روشن — برای هاور */
    --gold-dark:     #a07c2e;
    --dark-bg:       #141009;
    --dark-mid:      #1c1710;
    --dark-warm:     #28211a;
    --card-bg:      linear-gradient(
            90deg,
            #dfae6e 0%,   /* طلایی روشن بالا */
            #c89754 50%,   /* طلایی روشن بالا */
            #c89754 100%  /* طلایی تیره پایین */
    );
    --card-border: #00654a;
    --text-main:   #003226;   /* متن اصلی روشن */
    --text-muted: #52483b;
    --text-faint:    #4a4035;
}

/* ═══════════════════════════════════════════════════════
   پایه
═══════════════════════════════════════════════════════ */
*,
*::before,
*::after { box-sizing: border-box; }
a{
    text-decoration: none;
}
body {
    font-family: 'IRANSans', sans-serif;
    /*background-color: var(--dark-bg);*/
    /*background-image: radial-gradient(ellipse at 50% 0%,*/
        /*var(--dark-warm) 0%, var(--dark-mid) 40%, var(--dark-bg) 100%);*/
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════
   نوار ناوبری
═══════════════════════════════════════════════════════ */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    /*background: rgba(20, 16, 9, 0.92);*/
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold);
    background: #fff;
}

.navbar-logo span {
    margin: 20px 20px 0;
}

/* لوگو */
.navbar-brand-text {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(180deg, #f0d980 0%, #c9a84c 50%, #a07c2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
}

/* لینک‌های منو دسکتاپ */
.nav-link-custom {
    color: #c89754;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* دکمه همبرگر */
.hamburger-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.hamburger-btn:hover { color: var(--gold); border-color: var(--gold); }

/* منو موبایل */
.mobile-menu { border-top: 1px solid var(--card-border); padding-top: 0.75rem; margin: 0; }

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   دکمه‌ها (مشترک)
═══════════════════════════════════════════════════════ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, #d4ae56 0%, #b8922e 100%);
    color: #1a1208;
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'IRANSans', sans-serif;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.22);
    transition: filter 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    color: #1a1208;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
    transition: background 0.25s, color 0.25s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #1a1208;
}

/* ═══════════════════════════════════════════════════════
   هیرو پست
═══════════════════════════════════════════════════════ */
.post-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* تصویر پس‌زمینه */
.post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.post-hero:hover .post-hero-bg { transform: scale(1); }

/* لایه تاریک */
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14, 10, 5, 0.95) 0%,
        rgba(14, 10, 5, 0.6)  50%,
        rgba(14, 10, 5, 0.2) 100%
    );
}

/* محتوای هیرو */
.post-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 2.5rem;
    padding-top: 2rem;
}

/* بردکرامب */
.breadcrumb-custom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.82rem;
}

.breadcrumb-custom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-custom a:hover { color: var(--gold); }

.breadcrumb-custom i { color: var(--text-faint); font-size: 0.7rem; }

.breadcrumb-custom .active { color: var(--gold); }

/* دسته‌بندی */
.post-category {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

/* عنوان هیرو */
.post-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(180deg, #f0d980 0%, #c9a84c 50%, #a07c2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* متادیتا */
.post-meta {
    font-size: 0.82rem;
    color: #fff;
}

.post-meta i { color: var(--gold); margin-left: 0.35rem; }

/* ═══════════════════════════════════════════════════════
   کارت محتوای پست
═══════════════════════════════════════════════════════ */
.post-card {
    /*background: var(--card-bg);*/
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem 2rem;
    box-shadow: inset 0 1px 0 rgba(201, 168, 76, 0.06);
}

/* مقدمه */
.post-lead {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-main);
    font-weight: 500;
}

/* جداکننده طلایی */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: 0.3;
    margin: 1.5rem 0;
}

/* تیترهای داخل پست */
.post-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-right: 1rem;
    border-right: 3px solid var(--gold);
}

/* متن پاراگراف */
.post-body {
    font-size: 0.95rem;
    line-height: 2;
    color: #c89754;
    margin-bottom: 1rem;
}

/* تصویر داخل پست */
.post-figure {
    margin: 1.75rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.post-image {
    width: 100%;
    display: block;
    border-radius: 12px 12px 0 0;
}

.post-figure figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.6rem;
    background: rgba(0,0,0,0.3);
}

/* لیست امکانات */
.post-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.post-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.post-features-list li i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.post-features-list li strong {
    display: block;
    color: var(--text-main);
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.post-features-list li span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* نقل‌قول */
.post-quote {
    background: rgba(201, 168, 76, 0.06);
    border-right: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    margin: 2rem 0;
    position: relative;
}

.post-quote .fa-quote-right {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.4;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.post-quote p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.post-quote cite {
    font-size: 0.82rem;
    color: var(--gold);
    font-style: normal;
}

/* کارت‌های نوع سوئیت */
.suite-type-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    position: relative;
    transition: border-color 0.25s, background 0.25s;
}

.suite-type-card:hover,
.suite-type-card.featured {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.05);
}

.suite-badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #1a1208;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.suite-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 0.75rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.suite-type-card h5 {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.suite-type-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.suite-badge {
    font-size: 0.72rem;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border-radius: 20px;
    padding: 0.15rem 0.65rem;
}

/* تگ‌ها */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.tags-label i { color: var(--gold); margin-left: 0.3rem; }

.tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.tag:hover { border-color: var(--gold); color: var(--gold); }

/* اشتراک‌گذاری */
.post-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Vazirmatn', sans-serif;
    transition: opacity 0.2s;
}

.share-btn:hover { opacity: 0.85; }

.share-btn.telegram  { background: #2CA5E0; color: #fff; }
.share-btn.whatsapp  { background: #25D366; color: #fff; }
.share-btn.twitter   { background: #1DA1F2; color: #fff; }
.share-btn.link      { background: var(--card-border); color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   ناوبری پست قبل/بعد
═══════════════════════════════════════════════════════ */
.post-navigation {
    display: flex;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-bg);
}

.post-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    transition: background 0.2s;
}

.post-nav-item:hover { background: rgba(201, 168, 76, 0.05); }

.post-nav-item.reverse { text-align: left; }

.post-nav-label {
    font-size: 0.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-nav-item.reverse .post-nav-label { justify-content: flex-end; }

.post-nav-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: block;
}

.post-nav-divider {
    width: 1px;
    background: var(--card-border);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   سایدبار
═══════════════════════════════════════════════════════ */

/* CTA سایدبار */
.sidebar-cta {
    background:linear-gradient(90deg, #c0a37d69 0%, /* طلایی روشن بالا */ #d4b387 50%, /* طلایی روشن بالا */ #a5793c 100% /* طلایی تیره پایین */);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
}

.sidebar-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #9c7b21;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #9c7b21;
    font-size: 1.3rem;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.15);
}

.sidebar-cta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    font-size:14px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ویجت‌های سایدبار */
.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.25rem;
}

.sidebar-widget-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* لیست خدمات مرتبط */
.related-services li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    text-decoration: none;
    border-bottom: 1px solid var(--card-border);
    transition: background 0.2s;
}

.related-services>li>i>a>svg{
        color: var(--text-main)!important;
        fill: var(--text-main)!important;
        width: 300px;
}


.related-services a {
        color: var(--text-main)!important;
        fill: var(--text-main)!important;
}

.related-services li:last-child a { border-bottom: none; }

.related-services li a:hover .related-info strong { color: var(--text-main); }
.related-services li a:hover > .fa-chevron-left { color: var(--gold); }

.related-num {
    font-size: 0.72rem;
    color: var(--text-faint);
    font-weight: 700;
    min-width: 20px;
}

.related-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.related-info strong {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s;
}

.related-info small {
    font-size: 0.75rem;
    color: var(--text-faint);
}

.related-services .fa-chevron-left {
    font-size: 0.72rem;
    color: var(--text-faint);
    transition: color 0.2s;
}

/* گالری سریع */
.gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.gallery-thumb:hover { opacity: 0.8; transform: scale(1.03); }

.gallery-more {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(201, 168, 76, 0.1);
    border: 1px dashed rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    gap: 0.2rem;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.gallery-more:hover { background: rgba(201, 168, 76, 0.15); }

.gallery-more i { font-size: 1rem; }

/* اطلاعات سریع */
.quick-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quick-info li:last-child { border-bottom: none; }

.quick-info li i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   فوتر CTA
═══════════════════════════════════════════════════════ */
.cta-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.cta-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* آیکون هدفون */
.headphone-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: #1e1a12;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08),
                0 0 12px rgba(201, 168, 76, 0.15);
    cursor: pointer;
    transition: box-shadow 0.3s, background 0.3s;
}

.headphone-btn:hover {
    background: rgba(201, 168, 76, 0.12);
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.12),
                0 0 20px rgba(201, 168, 76, 0.25);
}

.fartak , .copy_right {
    font-size:13px;
    color: #c89754;
}

.fartak a{
    text-decoration: none;
    font-size: 13px;
    color: #c5a56d86;
}
/* Spinner */

.wpcf7-spinner {
    margin-right: 10px;
    margin-left: 0;
}


.contact-credentials {
    margin-top: 10px;
    list-style: none;
}

.contact-credentials li {
    padding: 10px 0;
}


.aboutus-content video{
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   ریسپانسیو — تبلت (md: 768px – 991px)
═══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {

    .post-hero { min-height: 340px; }

    .post-card { padding: 1.5rem; }

    /* سایدبار زیر محتوا — افقی در تبلت */
    .sidebar-cta,
    .sidebar-widget { margin-bottom: 1rem; }

    .post-navigation {
        flex-direction: column;
    }

    .post-nav-divider {
        width: 100%;
        height: 1px;
    }

    .post-nav-item.reverse { text-align: right; }
    .post-nav-item.reverse .post-nav-label { justify-content: flex-start; }
}


/* ═══════════════════════════════════════════════════════
   ریسپانسیو — موبایل (sm: < 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {

    .post-hero { min-height: 280px; }

    .post-hero-content { padding-bottom: 1.5rem; }

    .post-card { padding: 1.1rem; }

    .post-heading { font-size: 1.1rem; }

    .post-body { font-size: 0.9rem; }

    .post-lead { font-size: 0.95rem; }

    /* share buttons زیر هم در موبایل */
    .post-share { flex-direction: column; align-items: flex-start; }

    .share-buttons { width: 100%; }

    .share-btn { flex: 1; justify-content: center; }

    /* فوتر CTA موبایل — ستونی */
    .cta-footer {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .cta-footer .btn-outline-gold { order: 2; width: 100%; justify-content: center; }
    .cta-text { order: 1; }
    .headphone-btn { order: 3; }
}


/* ═══════════════════════════════════════════════════════
   ریسپانسیو — موبایل کوچک (xs: < 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 479.98px) {

    .post-hero-title { font-size: 1.4rem; }

    .post-meta { font-size: 0.75rem; gap: 0.5rem !important; }

    .post-features-list li { flex-direction: column; gap: 0.5rem; }

    .suite-type-card { padding: 1rem 0.75rem; }
    .contact-credentials {
        padding: 0 5px;
    }
    #EZD_MainForm {
        padding: 0 !important;
    }
}

/* ═══════════════════════════════════════════════════════
    صفحه 404
═══════════════════════════════════════════════════════ */

.page-404{
    min-height:70vh;
    display:flex;
    align-items:center;
}

.page-404 .display-1{
    font-size:9rem;
    line-height:1;
}

/* ═══════════════════════════════════════════════════════
    صفحه تماس با ما
═══════════════════════════════════════════════════════ */

/* Contact Form 7 */

/* ==========================
   Contact Form 7
   ========================== */

.wpcf7 {
    direction: rtl;
    text-align: right;
}

#EZD_MainForm {
    padding: 0 50px;
}

.wpcf7 p {
    margin-bottom: 1.4rem;
}

.wpcf7 label {
    display: block;
    margin-bottom: .6rem;
    font-weight: 600;
    color: #4b3621;
    padding: 10px 0;
}

/* Inputs */

.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d6c4a8;
    border-radius: 12px;
    background: #fffdf9;
    color: #4b3621;
    font-size: 15px;
    font-family: inherit;
    direction: rtl;
    text-align: right;
    transition: all .25s ease;
    box-sizing: border-box;
}

.wpcf7 textarea {
    min-height: 180px;
    resize: vertical;
}


/* Placeholder */

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #9a8b77;
}

/* Submit */

.wpcf7-submit {
    background: linear-gradient(135deg, #c5a46d, #8b6b3f);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.wpcf7-submit:hover {
    background: linear-gradient(135deg, #d3b27c, #9c7745);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,107,63,.25);
}

/* Validation */

.wpcf7-not-valid {
    border-color: #c0392b !important;
}

.wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
    text-align: right;
}

/* Messages */

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    border-radius: 10px;
    text-align: right;
    padding: 14px !important;
}


