@charset "UTF-8";
/* CSS Document */
/* =============================================
   SCROLL REVEAL
   ============================================= */
.ct-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease var(--ct-d, 0s), transform 0.6s ease var(--ct-d, 0s);
}
.ct-reveal.ct-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HERO
   ============================================= */
.ct-hero {
    background: #000;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
    padding: 80px 40px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ct-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 48px;
    background: #f2f2f2;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.ct-hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    background: #fff200;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
}
.ct-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.ct-hero h1 span { color: #fff200; }
.ct-hero p {
    font-size: 16px;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   QUICK CONTACT BAR
   ============================================= */
.ct-quick-bar {
    
	background: #f2f2f2;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
	
	
    background: #fff200;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	
    text-decoration: none;
    transition: opacity 0.2s;
}
.ct-quick-item:hover { opacity: 0.7; }
.ct-quick-icon {
    width: 34px;
    height: 34px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-quick-divider {
    width: 1px;
    height: 28px;
    background: rgba(0,0,0,0.2);
}

/* =============================================
   MAIN LAYOUT
   ============================================= */
.ct-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* =============================================
   LEFT COLUMN
   ============================================= */
.ct-left {}

.ct-section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #000;
    background: #fff200;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
}
.ct-left h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}
.ct-left-sub {
    font-size: 14.5px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Contact detail cards */
.ct-detail-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.ct-detail-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 6px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ct-detail-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
}
.ct-detail-icon {
    width: 42px;
    height: 42px;
    background: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-detail-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}
.ct-detail-value {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Social */
.ct-social-row {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
}
.ct-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #ccc;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    transition: border-color 0.2s, color 0.2s;
}
.ct-social-btn:hover {
    border-color: #fff200;
    color: #fff200;
}

/* Response time badge */
.ct-response-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 6px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-left: 3px solid #fff200;
    margin-bottom: 36px;
}
.ct-response-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    position: relative;
}
.ct-response-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34,197,94,0.25);
    animation: ct-pulse 1.8s ease-out infinite;
}
@keyframes ct-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}
.ct-response-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}
.ct-response-text strong { color: #000; }

/* What happens next steps */
.ct-steps-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}
.ct-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ct-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
}
.ct-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: -12px;
    width: 2px;
    background: #e8e8e8;
}
.ct-step-num {
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff200;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.ct-step-body {
    padding-bottom: 22px;
}
.ct-step-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #000;
    margin-bottom: 3px;
}
.ct-step-desc {
    font-size: 12.5px;
    color: #666;
    line-height: 1.6;
}

/* Service area note */
.ct-area-note {
    margin-top: 32px;
    background: #111;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
    border-radius: 6px;
    padding: 20px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.ct-area-icon {
    flex-shrink: 0;
    margin-top: 2px;
}
.ct-area-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff200;
    margin-bottom: 5px;
}
.ct-area-text {
    font-size: 12.5px;
    color: #888;
    line-height: 1.6;
}

/* =============================================
   RIGHT COLUMN — FORM (preserve existing styles)
   ============================================= */
.ct-right {}

.ct-form-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
}

/* Preserve existing form styles — just scope overrides here */
.ct-right .form-container {
    max-width: 100%;
}

/* Override form-border color to match site */
.ct-right .form-border {
    background-color: #fff200;
}
.ct-right input[type="text"]:focus,
.ct-right input[type="email"]:focus,
.ct-right textarea:focus {
    border-color: #000;
    outline: none;
}
.ct-right button[type="submit"] {
    background-color: #000;
    color: #fff200;
    padding: 13px 30px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ct-right button[type="submit"]:hover { background-color: #222; }
.ct-right button[type="submit"]:disabled { background-color: #6c757d; }

.ct-right .form-wrapper {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-radius: 0 6px 6px 0;
}

/* =============================================
   BOOK CTA STRIP
   ============================================= */
.ct-book-strip {
    background: #fff200;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto 70px;
    border-radius: 6px;
}
.ct-book-strip-text {
    font-size: 17px;
    font-weight: 700;
    color: #000;
}
.ct-book-strip-sub {
    font-size: 13px;
    color: #444;
    margin-top: 3px;
}
.ct-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #000;
    color: #fff200;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 800;
    padding: 13px 24px;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s ease, gap 0.2s ease;
}
.ct-book-btn:hover { background: #222; gap: 13px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 860px) {
    .ct-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px 60px;
    }
    .ct-hero { padding: 60px 24px 60px; }
    .ct-quick-bar { gap: 20px; padding: 18px 24px; }
    .ct-quick-divider { display: none; }
    .ct-book-strip {
        flex-direction: column;
        text-align: center;
        margin: 0 24px 50px;
    }
    .ct-book-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .ct-quick-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ct-social-row { flex-wrap: wrap; }
}
