/* ===========================
   CONTACT PAGE — HERO
=========================== */
.ct-hero {
    padding: 8rem 0 7rem;
    background: #faf9f7;
    position: relative;
    overflow: hidden;
}

.ct-mandala-wrap {
    position: absolute;
    right: -100px;
    top: 58%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    pointer-events: none;
    transition: transform 1.2s ease;
}

/* Hover — mandala gently grows as you enter the hero */
.ct-hero:hover .ct-mandala-wrap {
    transform: translateY(-50%) scale(1.06);
}

.ct-mandala {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.13;
    animation: ctMandalaSpin 35s linear infinite;
    transition: opacity 0.9s ease;
}

.ct-hero:hover .ct-mandala {
    opacity: 0.2;
}

@keyframes ctMandalaSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ct-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #1c1c1e;
    margin: 1.4rem 0 2.2rem;
}

.ct-hero-title em {
    font-style: italic;
    font-weight: 300;
}

.ct-hero-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #8a8480;
    line-height: 1.85;
    max-width: 500px;
}

/* ===========================
   VALUES — THREE PILLARS
=========================== */
.ct-values {
    background: #EDE6D8;
    padding: 9rem 0;
}

.ct-values .section-label {
    color: #B0A090;
}

.ct-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0;
}

.ct-value-card {
    padding: 2.5rem 2.5rem 2.5rem 0;
    border-top: 1px solid #D4C9B8;
    opacity: 0;
    transition: border-color 0.35s ease;
}

.ct-value-card:last-child {
    padding-right: 0;
}

.ct-value-card:hover {
    border-color: #b01c0a;
}

/* Scroll reveal */
.ct-value-card.ct-value-revealed {
    animation: ctCardIn 0.6s ease forwards;
    animation-delay: calc(var(--vi) * 100ms);
}

@keyframes ctCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ct-value-num {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: #B0A090;
    margin-bottom: 1.2rem;
    transition: color 0.35s ease;
}

.ct-value-card:hover .ct-value-num {
    color: #b01c0a;
}

.ct-value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #1C1A16;
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
}

.ct-value-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: #6A6058;
    line-height: 1.85;
}

/* ===========================
   HOW WE WORK — STEPS
=========================== */
.ct-process {
    background: #ffffff;
    padding: 9rem 0;
}

.ct-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 2.8rem 0;
    border-top: 1px solid #e8e2da;
    align-items: start;
    opacity: 0;
    transition: border-color 0.35s ease;
}

.ct-step:last-child {
    border-bottom: 1px solid #e8e2da;
}

.ct-step:hover {
    border-color: #c8c0b4;
}

/* Scroll reveal with stagger */
.ct-step.ct-step-revealed {
    animation: ctStepIn 0.6s ease forwards;
    animation-delay: calc(var(--si, 0) * 100ms);
}

@keyframes ctStepIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.ct-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.8rem;
    color: #ede9e3;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.35s ease;
    padding-top: 0.2rem;
}

.ct-step:hover .ct-step-num {
    color: #D4C9B8;
}

.ct-step-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #1c1c1e;
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
}

.ct-step-body p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: #8a8480;
    line-height: 1.85;
    max-width: 560px;
}

/* ===========================
   ENQUIRY BLOCK — DARK
=========================== */
.ct-enquiry {
    background: #111110;
    padding: 9rem 0;
}

.ct-enquiry-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 6rem;
    align-items: start;
}

.ct-enquiry-label {
    color: rgba(255, 255, 255, 0.28);
}

.ct-enquiry-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
    margin: 1.2rem 0 2rem;
}

.ct-enquiry-title em {
    font-style: italic;
    font-weight: 300;
}

.ct-enquiry-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.9;
}

/* Contact detail blocks */
.ct-enquiry-right {
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-contact-block {
    padding: 1.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: opacity 0.25s ease;
}

.ct-contact-block:hover {
    opacity: 0.85;
}

.ct-contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.ct-contact-val {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.25s ease;
}

a.ct-contact-val:hover {
    color: rgba(255, 255, 255, 0.95);
}

.ct-contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

/* Secondary phone number — slightly more muted */
.ct-contact-val--secondary {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.15rem;
}

/* Address — smaller size to fit cleanly */
.ct-contact-val--address {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

/* Business credentials — GST + PAN */
.ct-credentials {
    padding: 1.6rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ct-cred-item {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.ct-cred-key {
    color: rgba(255, 255, 255, 0.12);
    margin-right: 0.3rem;
}

.ct-cred-sep {
    color: #b01c0a;
    font-size: 0.5rem;
}

/* ===========================
   CONTACT FORM (dark bg)
=========================== */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 3.5rem;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ct-form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.ct-form-group input,
.ct-form-group textarea {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.9rem 0;
    outline: none;
    transition: border-color 0.3s ease;
    line-height: 1.7;
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form-submit {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 1.1rem 2.8rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
    margin-top: 0.6rem;
}

.ct-form-submit:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #111110;
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   MOBILE — max-width: 768px
=========================== */
@media (max-width: 768px) {

    /* Hero */
    .ct-hero {
        padding: 5rem 0 3.5rem;
    }
    .ct-mandala-wrap {
        width: 260px;
        height: 260px;
        right: -60px;
        top: 50%;
    }

    /* Values — single column */
    .ct-values {
        padding: 4.5rem 0;
    }
    .ct-values-grid {
        grid-template-columns: 1fr;
    }
    .ct-value-card {
        padding: 2rem 0;
    }
    .ct-value-card:last-child {
        padding-right: 0;
    }

    /* Process steps */
    .ct-process {
        padding: 4.5rem 0;
    }
    .ct-step {
        grid-template-columns: 48px 1fr;
        gap: 1.4rem;
        padding: 2rem 0;
    }
    .ct-step-num {
        font-size: 2rem;
    }

    /* Enquiry — single column */
    .ct-enquiry {
        padding: 4.5rem 0;
        padding-bottom: calc(4.5rem + 90px + env(safe-area-inset-bottom, 0px));
    }
    .ct-enquiry-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ct-enquiry-right {
        padding-top: 0;
    }

    /* Contact values — larger tap targets */
    .ct-contact-block {
        padding: 1.5rem 0;
    }
    .ct-contact-val {
        font-size: 1.2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .ct-contact-val--address {
        display: block;
        font-size: 0.95rem;
        min-height: 0;
    }

    /* Contact form */
    .ct-form-row {
        grid-template-columns: 1fr;
    }
    .ct-form-group input,
    .ct-form-group textarea {
        font-size: 1rem;
    }
    .ct-form-submit {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    footer {
        padding-bottom: calc(3rem + 90px + env(safe-area-inset-bottom, 0px));
    }
}

/* ===========================
   FORM BUTTON — LOADING STATE
=========================== */
.ct-form-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    overflow: hidden;
}

.btn-loader {
    display: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
    flex-shrink: 0;
}

.ct-form-submit.is-loading .btn-loader {
    display: inline-block;
}

.ct-form-submit.is-loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* ===========================
   FORM STATUS MESSAGE
=========================== */
.ct-form-status {
    display: none;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 1rem 1.4rem;
    border-radius: 2px;
    letter-spacing: 0.01em;
    animation: ctStatusIn 0.35s ease forwards;
}

.ct-form-status--success {
    display: block;
    background: rgba(42, 110, 60, 0.25);
    border: 1px solid rgba(80, 180, 100, 0.35);
    color: #7fdb9a;
}

.ct-form-status--error {
    display: block;
    background: rgba(180, 28, 10, 0.2);
    border: 1px solid rgba(176, 28, 10, 0.4);
    color: #e07060;
}

@keyframes ctStatusIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
