/* CONTACT PAGE — specific styles only */

@font-face {
            font-family: 'Abusayed';
            src: url('../fonts/Codepotro Abu Sayed.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

/* ══════════  PAGE HERO  ══════════ */
        .page-hero {
            background: #081a0c;
            padding: 72px 40px 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(243,27,29,0.10) 0%, transparent 60%);
            pointer-events: none;
        }
        /* decorative circle rings */
        .page-hero::after {
            content: '';
            position: absolute;
            right: -100px; bottom: -100px;
            width: 360px; height: 360px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.05);
            pointer-events: none;
        }
        .page-hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(243,27,29,0.18);
            border: 1px solid rgba(243,27,29,0.5);
            border-radius: 100px;
            padding: 7px 20px;
            margin-bottom: 22px;
        }
        .page-hero-pill .dot {
            width: 7px; height: 7px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse 1.8s ease-in-out infinite;
        }
        @keyframes pulse {
            0%,100% { opacity:1; transform:scale(1); }
            50% { opacity:0.4; transform:scale(1.6); }
        }
        .page-hero-pill span {
            font-size: 11px; font-weight: 700;
            color: rgba(255,255,255,0.9);
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .page-hero h1 {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(32px, 5vw, 60px);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            text-shadow: 0 4px 32px rgba(0,0,0,0.3);
            margin-bottom: 16px;
        }
        .page-hero h1 .accent { color: var(--red); }
        .page-hero-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.58);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ══════════  SEC LABEL  ══════════ */
        .sec-label {
            font-size: 11px; font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--red);
            display: flex; align-items: center; gap: 8px;
            margin-bottom: 8px;
        }
        .sec-label::before {
            content: '';
            width: 26px; height: 2.5px;
            background: var(--red);
            border-radius: 2px; display: block;
        }
        .sec-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(24px, 3.2vw, 38px);
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.15;
        }

        /* ══════════  CONTACT CARDS ROW  ══════════ */
        .cards-sec {
            background: var(--off);
            padding: 72px 40px;
        }
        .cards-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .cards-head {
            text-align: center;
            margin-bottom: 48px;
        }
        .cards-head .sec-label { justify-content: center; }
        .cards-head .sec-label::before { display: none; }
        .cards-head .sec-label::after {
            content: '';
            width: 26px; height: 2.5px;
            background: var(--red);
            border-radius: 2px; display: block;
        }
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .cc {
            background: #fff;
            border-radius: 20px;
            padding: 36px 28px;
            border: 1px solid rgba(2,108,51,0.09);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .cc::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }
        .cc:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(2,108,51,0.12);
        }
        .cc:hover::before { transform: scaleX(1); }
        .cc-icon {
            width: 60px; height: 60px;
            border-radius: 16px;
            background: rgba(2,108,51,0.08);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            transition: background 0.3s;
        }
        .cc:hover .cc-icon {
            background: rgba(2,108,51,0.15);
        }
        .cc-label {
            font-size: 10px; font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 8px;
        }
        .cc-value {
            font-family: 'Abusayed', serif;
            font-size: 17px;
            color: var(--green-dk);
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .cc-sub {
            font-size: 12px;
            color: #999;
            line-height: 1.6;
        }

        /* ══════════  MAIN CONTENT — form + info  ══════════ */
        .main-sec {
            background: #fff;
            padding: 80px 40px;
        }
        .main-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: start;
        }

        /* ── FORM ── */
        .form-side {}
        .form-head { margin-bottom: 36px; }
        .form-group { margin-bottom: 22px; }
        label {
            display: block;
            font-size: 12px; font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--green-dk);
            margin-bottom: 8px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid rgba(2,108,51,0.18);
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Tiro Bangla', serif;
            color: #1a1a1a;
            background: var(--off);
            outline: none;
            transition: all 0.22s;
            appearance: none;
        }
        input:focus, select:focus, textarea:focus {
            border-color: var(--green);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(2,108,51,0.08);
        }
        input::placeholder, textarea::placeholder { color: #bbb; }
        textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
        select {
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23026C33' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            cursor: pointer;
        }
        .form-note {
            font-size: 12px;
            color: #aaa;
            line-height: 1.7;
            margin-top: 6px;
        }
        .submit-btn {
            display: inline-flex;
            align-items: center; gap: 10px;
            padding: 16px 40px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px; font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-family: 'Tiro Bangla', serif;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: 0 8px 28px rgba(2,108,51,0.22);
            width: 100%;
            justify-content: center;
            margin-top: 6px;
        }
        .submit-btn:hover {
            background: #081a0c;
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(2,108,51,0.3);
        }
        .submit-btn svg { transition: transform 0.22s; }
        .submit-btn:hover svg { transform: translateX(4px); }

        /* success state */
        .form-success {
            display: none;
            background: rgba(2,108,51,0.07);
            border: 1.5px solid rgba(2,108,51,0.25);
            border-radius: 12px;
            padding: 28px;
            text-align: center;
            margin-top: 16px;
        }
        .form-success.show { display: block; }
        .form-success svg { margin-bottom: 12px; }
        .form-success p {
            color: var(--green-dk);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.6;
        }

        /* ── INFO SIDE ── */
        .info-side {}
        .info-head { margin-bottom: 36px; }

        .info-block {
            margin-bottom: 32px;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(2,108,51,0.08);
        }
        .info-item:last-child { border-bottom: none; }
        .info-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(2,108,51,0.08);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .info-text-label {
            font-size: 10px; font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 5px;
        }
        .info-text-val {
            font-size: 15px;
            font-weight: 600;
            color: var(--green-dk);
            line-height: 1.5;
            margin-bottom: 3px;
        }
        .info-text-sub {
            font-size: 13px;
            color: #999;
        }

        /* City offices */
        .cities-block {
            background: var(--off);
            border-radius: 18px;
            padding: 28px;
            margin-bottom: 28px;
        }
        .cities-block-title {
            font-size: 12px; font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--green-dk);
            margin-bottom: 16px;
            display: flex; align-items: center; gap: 8px;
        }
        .city-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(2,108,51,0.08);
        }
        .city-row:last-child { border-bottom: none; }
        .city-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--green);
            flex-shrink: 0;
        }
        .city-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--green-dk);
            flex: 1;
        }
        .city-status {
            font-size: 10px; font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 100px;
            background: rgba(2,108,51,0.1);
            color: var(--green);
        }
        .city-status.hq {
            background: rgba(243,27,29,0.1);
            color: var(--red);
        }

        /* Social row */
        .social-strip {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .soc-btn {
            display: inline-flex;
            align-items: center; gap: 8px;
            padding: 10px 18px;
            border-radius: 8px;
            border: 1.5px solid rgba(2,108,51,0.18);
            background: #fff;
            color: var(--green-dk);
            font-size: 13px; font-weight: 600;
            text-decoration: none;
            transition: all 0.22s;
        }
        .soc-btn:hover {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
            transform: translateY(-2px);
        }
        .soc-btn:hover svg { stroke: #fff; }

        /* ══════════  MAP PLACEHOLDER  ══════════ */
        .map-sec {
            background: var(--off);
            padding: 72px 40px;
        }
        .map-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .map-head { margin-bottom: 36px; }
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            height: 360px;
            background: #e8ede9;
            position: relative;
            box-shadow: 0 4px 28px rgba(0,0,0,0.07);
            border: 1px solid rgba(2,108,51,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Illustrated map background */
        .map-illustration {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-grid-lines {
            position: absolute;
            inset: 0;
            opacity: 0.35;
        }
        .map-center-pin {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .pin-circle {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: var(--green);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 12px;
            box-shadow: 0 0 0 12px rgba(2,108,51,0.12), 0 0 0 24px rgba(2,108,51,0.06);
        }
        .pin-label {
            background: #fff;
            padding: 10px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.12);
            font-size: 13px; font-weight: 700;
            color: var(--green-dk);
            display: inline-block;
        }
        .pin-label span {
            display: block;
            font-size: 11px; font-weight: 500;
            color: #888;
            margin-top: 2px;
        }
        /* Pulse dots for other cities */
        .city-pin {
            position: absolute;
            display: flex; flex-direction: column; align-items: center; gap: 4px;
        }
        .city-pin .cpd {
            width: 12px; height: 12px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 0 5px rgba(243,27,29,0.15);
        }
        .city-pin .cpl {
            font-size: 10px; font-weight: 700;
            color: var(--green-dk);
            white-space: nowrap;
            background: rgba(255,255,255,0.9);
            padding: 2px 7px;
            border-radius: 4px;
        }
        .cp-toronto  { top: 48%; left: 50%; }
        .cp-winnipeg { top: 42%; left: 30%; }
        .cp-calgary  { top: 38%; left: 22%; }
        .cp-vancouver{ top: 35%; left: 8%; }
        .cp-montreal { top: 44%; left: 66%; }

        /* ══════════  FAQ  ══════════ */
        .faq-sec {
            background: #fff;
            padding: 80px 40px;
        }
        .faq-inner {
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-head {
            text-align: center;
            margin-bottom: 48px;
        }
        .faq-head .sec-label { justify-content: center; }
        .faq-head .sec-label::before { display: none; }
        .faq-item {
            border-bottom: 1px solid rgba(2,108,51,0.1);
        }
        .faq-item:first-of-type { border-top: 1px solid rgba(2,108,51,0.1); }
        .faq-q {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-family: 'Tiro Bangla', serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--green-dk);
            cursor: pointer;
            transition: color 0.2s;
        }
        .faq-q:hover { color: var(--red); }
        .faq-chevron {
            flex-shrink: 0;
            width: 28px; height: 28px;
            border-radius: 50%;
            border: 1.5px solid rgba(2,108,51,0.25);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s;
        }
        .faq-item.open .faq-chevron {
            background: var(--green);
            border-color: var(--green);
            transform: rotate(180deg);
        }
        .faq-item.open .faq-chevron svg { stroke: #fff; }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s;
        }
        .faq-a-inner {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            padding-bottom: 22px;
        }
