﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
    --navy: #1e1b4b;
    --navy-mid: #252265;
    --blue-card: #7393B3;
    --blue: #0d6efd;
    --blue-btn: #3d8bfd;
    --blue-hover: #0b5ed7;
    --gold: #f5a623;
    --teal: #00b4d8;
    --green: #25d366;
    --red: #e53e3e;
    --insta: #e1306c;
    --yt: #ff0000;
    --text-dark: #1a1a2e;
    --text-body: #4a4869;
    --text-light: #7b7ba0;
    --border-dark: rgba(255, 255, 255, 0.18);
    --border-light: #e2e0f0;
    --white: #ffffff;
    --wave-purple: #6c5ce7;
    --tr: 0.26s ease;
    --font-b: 'Montserrat', sans-serif;
    --font-h: 'Montserrat', sans-serif;
    --radius: 12px;
    --radius-card: 14px;
}

/* ── Base ───────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    background: #f7f6ff;
    color: var(--blue);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Container 1320px ───────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 1 — CONTACT  (Get a quote + Get in touch form)
═══════════════════════════════════════════════════════════════ */
.contact-section {
    background: #ffffff;
    padding: 72px 0 80px;
}

/* Two-column grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── LEFT — Get a quote from us today ── */

.contact-left-title {
    font-family: var(--font-h);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.25;
}

/* Divider line below title */
.contact-left-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--border-light);
    margin-top: 18px;
}

/* Info group */
.contact-info-group {
    margin-bottom: 24px;
}

.contact-info-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.55;
}

.contact-info-item .ci-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.contact-info-item .ci-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Divider between info groups */
.contact-divider {
    height: 1px;
    background: var(--border-light);
    margin: 20px 0;
}

/* Social icons row */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--tr), opacity var(--tr);
    flex-shrink: 0;
}

.soc-btn:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.soc-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.soc-fb {
    background: #1877f2;
}

.soc-li {
    background: #0a66c2;
}

.soc-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.soc-yt {
    background: #ff6666;
}

.soc-wa {
    background: #25d366;
}

.soc-star {
    background: #f5a623;
}

/* ── RIGHT — "Let's get in touch" card ── */
.contact-right {
    background: var(--blue-card);
    border-radius: var(--radius-card);
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
}

/* Decorative radial glow */
.contact-right::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, .35) 0%, transparent 70%);
    pointer-events: none;
}

/* Dot-grid watermark */
.contact-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 140px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .12) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
}

.card-title {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

/* Squiggle underline */
.card-squiggle {
    display: block;
    margin-bottom: 22px;
}

/* Form fields */
.form-field {
    position: relative;
    margin-bottom: 16px;
}

.form-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-dark);
    padding: 10px 0 8px;
    font-size: 12px;
    font-family: var(--font-b);
    color: var(--white);
    outline: none;
    transition: border-color var(--tr);
    letter-spacing: 0.5px;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-field input:focus {
    border-bottom-color: var(--blue-btn);
}

/* Submit button */
.btn-subscribe {
    background: var(--blue-btn);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-family: var(--font-b);
    transition: background var(--tr), transform var(--tr);
}

.btn-subscribe:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — GOOGLE MAP EMBED
═══════════════════════════════════════════════════════════════ */
.map-section {
    width: 100%;
    line-height: 0;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
    filter: saturate(0.9) brightness(0.97);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 1100px
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .contact-grid {
        gap: 44px;
    }

    .contact-left-title {
        font-size: 23px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 900px  (tablet)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .container {
        padding: 0 28px;
    }

    .contact-section {
        padding: 52px 0 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left-title {
        font-size: 22px;
    }

    .contact-right {
        padding: 28px 24px 24px;
    }

    .card-title {
        font-size: 20px;
    }

    .map-section iframe {
        height: 280px;
    }

    .subscribe-section h2 {
        font-size: 21px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 640px  (mobile landscape)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .contact-section {
        padding: 40px 0 48px;
    }

    .contact-left-title {
        font-size: 20px;
    }

    .map-section iframe {
        height: 240px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 420px  (mobile portrait)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
    .container {
        padding: 0 16px;
    }

    .contact-left-title {
        font-size: 18px;
    }

    .card-title {
        font-size: 18px;
    }

    .map-section iframe {
        height: 200px;
    }
}