/* ================================================================
   CONTACT PAGE — contact.css
   ================================================================ */


/* ----------------------------------------------------------------
   BREADCRUMB
---------------------------------------------------------------- */
.contact-breadcrumb {
    margin: 0;
}

.contact-breadcrumb .breadcrumb-item a {
    color: rgba(242, 231, 213, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.contact-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.contact-breadcrumb .breadcrumb-item.active {
    color: var(--parchment);
    font-size: 0.85rem;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(212, 162, 75, 0.45);
    content: "›";
    font-size: 1rem;
}


/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.contact-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--mahogany) 0%,
        #2a1206         25%,
        var(--olive)    65%,
        #161309         100%
    );
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 22, 8, 0.25);
}

/* Concentric ring pattern — a nod to ripple / reach out */
.contact-hero-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.06;
}

.contact-hero-pattern::before,
.contact-hero-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--gold);
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
}

.contact-hero-pattern::before {
    width: 600px;
    height: 600px;
    margin-top: -300px;
    margin-right: -300px;
}

.contact-hero-pattern::after {
    width: 900px;
    height: 900px;
    margin-top: -450px;
    margin-right: -450px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    color: var(--parchment);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.contact-hero-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.contact-hero-subtitle {
    color: rgba(242, 231, 213, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.contact-hero-cut {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--parchment);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}


/* ----------------------------------------------------------------
   QUICK CONTACT CARDS
---------------------------------------------------------------- */
.contact-cards-section {
    background: var(--parchment);
    padding: 4rem 0 0;
}

.contact-card-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: calc(var(--cc-delay, 0) * 0.1s);
}

.contact-card-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-card {
    background: var(--white);
    border: 1px solid rgba(212, 162, 75, 0.12);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(212, 162, 75, 0.3);
}

.contact-info-card:hover::after {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mahogany), var(--olive));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(43, 22, 8, 0.2);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(43, 22, 8, 0.25);
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--mahogany);
    margin-bottom: 0.4rem;
}

.contact-info-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.contact-info-value {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-value:hover {
    color: var(--orange);
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-hours span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--mahogany);
}


/* ----------------------------------------------------------------
   MAIN SECTION
---------------------------------------------------------------- */
.contact-main-section {
    background: var(--parchment);
    padding: 4rem 0 6rem;
}


/* ----------------------------------------------------------------
   CONTACT FORM CARD
---------------------------------------------------------------- */
.contact-form-card {
    background: var(--white);
    border: 1px solid rgba(212, 162, 75, 0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    background: linear-gradient(135deg, var(--mahogany) 0%, var(--olive) 100%);
    padding: 2rem 2.5rem;
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: rgba(242, 231, 213, 0.72);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.contact-form-body {
    padding: 2.5rem;
}

/* Field error */
.contact-field-error {
    margin-top: 0.35rem;
}

.contact-field-error span {
    display: block;
    font-size: 0.8rem;
    color: #c0392b;
}

/* Optional label */
.contact-optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.25rem;
}

/* Character counter */
.contact-char-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.35rem;
}

/* Submit button — full width */
.contact-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
    position: relative;
}


/* ----------------------------------------------------------------
   SIDE CARDS
---------------------------------------------------------------- */
.contact-side-card {
    background: var(--white);
    border: 1px solid rgba(212, 162, 75, 0.12);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-side-card:last-child {
    margin-bottom: 0;
}

.contact-side-header {
    background: linear-gradient(135deg, var(--mahogany) 0%, var(--olive) 100%);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

.contact-side-body {
    padding: 1.5rem;
}

/* Why choose us list */
.contact-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-why-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 162, 75, 0.12), rgba(230, 126, 34, 0.08));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-why-list li:hover .contact-why-icon {
    background: var(--mahogany);
    color: var(--gold);
    transform: scale(1.08);
}

.contact-why-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--mahogany);
    margin-bottom: 0.2rem;
}

.contact-why-list p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* Social card */
.contact-social-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius);
    border: 1.5px solid rgba(212, 162, 75, 0.2);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--mahogany);
    transition: var(--transition);
    background: var(--parchment);
}

.contact-social-btn i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.contact-social-btn:hover { text-decoration: none; }

.contact-fb:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.contact-ig:hover  {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: #fd1d1d;
    color: #fff;
}
.contact-wa:hover  { background: #25D366; border-color: #25D366; color: #fff; }
.contact-tw:hover  { background: #000;    border-color: #000;    color: #fff; }


/* ----------------------------------------------------------------
   BOTTOM STRIP
---------------------------------------------------------------- */
.contact-bottom-strip {
    position: relative;
    overflow: hidden;
}

.contact-bottom-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mahogany) 0%, var(--olive) 100%);
}

/* Diagonal top cut */
.contact-bottom-strip::before {
    content: '';
    display: block;
    height: 55px;
    background: var(--parchment);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    position: relative;
    z-index: 1;
}

.contact-bottom-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
    padding: 3rem 0 4rem;
    flex-wrap: wrap;
}

.contact-bottom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 180px;
}

.contact-bottom-item > i {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-bottom-item strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-bottom-item span,
.contact-bottom-item a {
    font-size: 0.85rem;
    color: rgba(242, 231, 213, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-bottom-item a:hover {
    color: var(--gold);
}

.contact-bottom-divider {
    width: 1px;
    height: 50px;
    background: rgba(212, 162, 75, 0.2);
    flex-shrink: 0;
}


/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .contact-hero        { padding: 6rem 0 5rem; }
    .contact-form-header { padding: 1.75rem; }
    .contact-form-body   { padding: 1.75rem; }
}

@media (max-width: 767.98px) {
    .contact-bottom-inner   { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .contact-bottom-divider { width: 100%; height: 1px; }
    .contact-social-links   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .contact-form-header { padding: 1.25rem; }
    .contact-form-body   { padding: 1.25rem; }
    .contact-social-links { grid-template-columns: 1fr; }
}