/* ==========================================================
   BLACK HARBOR GROUP - CONTACT PAGE
   Clean institutional design with professional contact layout
   ========================================================== */

/* ===================================================
   HERO
=================================================== */
.ct-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(var(--rgb-navy), 0.95) 20%, rgba(var(--rgb-navy), 0.5) 100%), 
                url('../images/heroes/contact.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 140px 0 100px;
}

.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(178,140,64,0.05) 1px, transparent 1px),
        linear-gradient(225deg, rgba(178,140,64,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.ct-hero .hero-inner { position: relative; z-index: 2; }

.ct-hero .hero-tag {
    display: inline-block;
    background: rgba(178,140,64,0.1);
    border: 1px solid rgba(178,140,64,0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 32px;
}

.ct-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -4px;
    margin-bottom: 25px;
    line-height: 1;
}

.ct-hero .hero-sub {
    font-size: 22px;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ct-hero .hero-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 30px;
}

.ct-hero .hero-crumbs a { color: rgba(255,255,255,0.7); transition: color 0.3s; text-decoration: none; }
.ct-hero .hero-crumbs a:hover { color: var(--gold-primary); }
.ct-hero .hero-crumbs .sep { color: rgba(255,255,255,0.2); }
.ct-hero .hero-crumbs .cur { color: var(--gold-primary); font-weight: 600; }

/* ===================================================
   SHARED HELPERS
=================================================== */
.ct-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.hero-tag {
    display: inline-block;
    background: rgba(178,140,64,0.1);
    border: 1px solid rgba(178,140,64,0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
}

.ct-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.ct-heading.dark { color: var(--text-dark); }
.ct-heading.light { color: var(--text-dark); }

/* ===================================================
   OFFICE CARDS
=================================================== */
.office-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 45px;
    border: 1px solid rgba(var(--rgb-navy),0.04);
    box-shadow: 0 10px 40px rgba(var(--rgb-navy),0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(var(--rgb-navy),0.08);
    border-color: rgba(178,140,64,0.15);
}

.office-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: radial-gradient(circle at top right, rgba(178,140,64,0.05), transparent 70%);
    pointer-events: none;
}

/* ===================================================
   CONTACT FORM
=================================================== */
.ct-form-wrap .form-group { margin-bottom: 25px; }

.ct-form-wrap label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.ct-form-wrap .ct-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(var(--rgb-navy),0.08);
    border-radius: 12px;
    background: #fbfbfc;
    font-size: 15px;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.ct-form-wrap .ct-input:focus {
    border-color: var(--gold-primary);
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(178,140,64,0.08);
}

.ct-submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #d4a84e 100%);
    color: #fff;
    padding: 18px 45px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(178,140,64,0.2);
}

.ct-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(178,140,64,0.3);
}

/* ===================================================
   INQUIRY GUIDANCE
=================================================== */
.ct-guidance-list { list-style: none; padding: 0; margin: 0; }

.ct-guidance-item { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
    padding: 25px; 
    background: var(--bg-white); 
    border-radius: 16px; 
    border: 1px solid rgba(var(--rgb-navy),0.04);
    transition: all 0.4s ease;
}

.ct-guidance-item:hover {
    transform: translateX(12px);
    box-shadow: 0 15px 40px rgba(var(--rgb-navy),0.05);
    border-color: rgba(178,140,64,0.15);
}

.ct-guidance-icon { 
    width: 45px; 
    height: 45px; 
    background: rgba(178,140,64,0.1); 
    color: var(--gold-primary); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.3s ease;
}

.ct-guidance-item:hover .ct-guidance-icon {
    background: var(--gold-primary);
    color: #fff;
    transform: scale(1.1);
}

.ct-guidance-content h5 { 
    font-family: 'Outfit', sans-serif;
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 8px; 
    color: var(--text-dark); 
}

.ct-guidance-content p { 
    font-size: 15px; 
    color: var(--text-slate); 
    margin: 0; 
    line-height: 1.7; 
}

/* ===================================================
   CONFIDENTIALITY BOX
=================================================== */
.conf-box { 
    padding: 70px 50px; 
    background: var(--bg-navy); 
    border-radius: 28px; 
    border: 1px solid rgba(178,140,64,0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(var(--rgb-navy),0.2);
}

.conf-box::before {
    content: '\eb3b'; /* ti-shield */
    font-family: 'themify';
    position: absolute;
    right: -30px;
    bottom: -30px;
    font-size: 200px;
    color: rgba(178,140,64,0.04);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* ===================================================
   REINFORCEMENT SECTION
=================================================== */
.ct-reinforcement {
    padding: 140px 0;
    background: var(--bg-navy-dark);
    position: relative;
    overflow: hidden;
}

.contact-icon-circle {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-icon-circle.square {
    border-radius: 14px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--gold-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(178,140,64,0.25);
    text-align: center;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(178,140,64,0.4);
    color: #fff;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
    .ct-hero h1 { font-size: 56px; letter-spacing: -2px; }
    .ct-heading { font-size: 40px; }
    .ct-form-wrap { padding: 40px; }
}

@media (max-width: 767px) {
    .ct-hero { min-height: auto; padding: 120px 0 80px; }
    .ct-hero h1 { font-size: 42px; letter-spacing: -1px; }
    .ct-heading { font-size: 32px; letter-spacing: -1px; }
    .conf-box { padding: 50px 30px; }
}
