/* ==========================================================================
   EASTSEAS TRADING EST. — CONTACT PAGE STYLES
   ========================================================================== */

.contact-map-iframe {
    border: 0;
}
/* EASTSEAS TRADING EST. — CONTACT PAGE (REDESIGNED)
   Premium, Clean, Well-Aligned
   ========================================================================== */

/* ====== 1. HERO ====== */
.contact-hero-section {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(28, 40, 102, 0.92) 0%, rgba(11, 18, 43, 0.95) 100%), url('../images/banner/contact.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,90,36,0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: floatShape 10s infinite alternate ease-in-out;
}

.contact-hero-content {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 40%, #eaf6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.contact-hero-content p {
    font-size: 1.25rem; /* Bigger hero text */
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 800px;
    margin: 0;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.75);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    text-decoration: none;
}
.breadcrumb-nav a:hover { color: var(--primary-light); }
.breadcrumb-nav i { font-size: 0.7rem; opacity: 0.5; }

/* ====== 2. CONTACT LAYOUT (REMOVED CONTAINERS) ====== */
/* Wrapper completely removed to allow seamless bleeding */

/* ====== 2. CONTACT DASHBOARD ====== */
.contact-dashboard-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Perfect 50/50 split */
    background: #fff;
    border-radius: 0; /* No rounding */
    box-shadow: none; /* No shadow */
    margin: 0; /* Flush against hero and map */
    padding:0;
    width: 100vw; /* Absolute edge-to-edge */
    position: relative;
    z-index: 10;
    border: none;
}

/* Left Panel: Info */
.contact-dashboard-info {
    background: radial-gradient(circle at top left, var(--primary-dark) 0%, #0b122b 100%);
    color: #fff;
    padding: 100px 8%; /* Deep padding */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    position: relative;
    overflow: hidden;
}

.contact-dashboard-info::before {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0,174,239,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-dashboard-info h2 {
    font-size: 2.4rem; /* Massive heading */
    font-weight: 800;
    margin: 0 0 15px;
    color: #fff;
}

.contact-dashboard-info > p {
    font-size: 1.15rem; /* Bigger font */
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 60px;
}

.dashboard-info-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex-grow: 1;
}

.dashboard-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dashboard-info-item .info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dashboard-info-item:hover .info-icon {
    background: var(--primary-light);
    color: #fff;
    transform: scale(1.05);
}

.dashboard-info-item .info-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 5px;
}

.dashboard-info-item .info-text p,
.dashboard-info-item .info-text a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.dashboard-info-item .info-text a:hover {
    color: var(--primary-light);
}

.dashboard-social {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.dashboard-social p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ====== 3. FULL BLEED MAP ====== */
.contact-full-map {
    width: 100%;
    height: 500px;
    background: #e2e8f0;
    padding:0;
}

.contact-full-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* Right Panel: Form */
.contact-dashboard-form {
    background: #fff;
    padding: 100px 8%; /* Deep padding to match left side */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-dashboard-form h2 {
    font-size: 2.8rem; /* Massive heading */
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 12px;
    letter-spacing: -1px;
}

.form-subtitle {
    font-size: 1.2rem; /* Bigger subtitle */
    color: var(--text-muted);
    margin: 0 0 50px;
}

/* Form Inputs with Icons */
.contact-dashboard-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; /* More gap between inputs */
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group i {
    position: absolute;
    top: 20px; /* Aligned with text baseline */
    left: 0; /* Flush left */
    color: #a0aec0;
    font-size: 1.4rem; /* Larger icon */
    transition: color 0.3s ease;
    pointer-events: none;
}

.textarea-group i { top: 20px; }

.contact-input {
    width: 100%;
    padding: 20px 0 15px 45px; /* Padding on bottom, space for icon on left */
    font-size: 1.25rem; /* Larger font */
    font-weight: 500;
    color: var(--text-dark);
    background: transparent; /* Seamless background */
    border: none;
    border-bottom: 2px solid var(--border-color); /* Bottom border only */
    border-radius: 0; /* Sharp corners */
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-input::placeholder { color: #94a3b8; font-weight: 400; }

.contact-input:focus {
    background: transparent;
    border-bottom-color: var(--primary-light); /* Highlights border */
    box-shadow: none; /* No box shadow */
}

.contact-input:focus + i,
.input-group:focus-within i { color: var(--primary-light); }

textarea.contact-input {
    min-height: 220px; /* Taller textarea */
    resize: vertical;
}

/* Submit Button */
.btn-contact-submit {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(241,90,36,0.3);
    border: none;
    padding: 22px 50px; /* Massive button */
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px; /* Pill shaped to match navbar */
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 20px;
}

.btn-contact-submit:hover {
    background: #d83e0a;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(216,62,10,0.4);
}

.btn-contact-submit i { transition: transform 0.2s; }
.btn-contact-submit:hover i { transform: translateX(5px) translateY(-3px); }

/* Alerts */
.contact-status-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid;
    margin-bottom: 24px;
}

.contact-status-alert.success { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.2); color: #1b803f; }
.contact-status-alert.success i { font-size: 1.4rem; color: #25d366; }

.contact-status-alert.error { background: rgba(241,90,36,0.06); border-color: rgba(241,90,36,0.2); color: #c53030; }
.contact-status-alert.error i { font-size: 1.4rem; color: var(--accent); }

.contact-status-alert h4 { font-size: 0.95rem; font-weight: 800; margin: 0 0 4px; }
.contact-status-alert p { font-size: 0.85rem; margin: 0; opacity: 0.9; }

/* ====== 4. CLIENT MARQUEE ====== */
.clients-marquee-wrap-section {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.clients-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.text-center { text-align: center; }

.marquee-container-premium {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    margin-top: 35px;
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.marquee-track-premium {
    display: flex;
    gap: 25px;
    animation: marqueeScroll 40s infinite linear;
    width: max-content;
}

.marquee-container-premium:hover .marquee-track-premium { animation-play-state: paused; }

.marquee-logo-box {
    width: 220px;
    height: 100px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: none;
    flex-shrink: 0;
}

.marquee-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Keyframes */
@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(6deg); }
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12.5px)); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1400px) {
    .contact-dashboard-info { padding: 80px 6%; }
    .contact-dashboard-form { padding: 80px 6%; }
}

@media (max-width: 992px) {
    .contact-dashboard-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-dashboard-info, .contact-dashboard-form {
        padding: 60px 8%;
    }
    .dashboard-info-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    .dashboard-info-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 2.6rem; }
    .form-grid-row { grid-template-columns: 1fr; gap: 20px; }
    .contact-dashboard-form { padding: 40px 30px; }
    .contact-dashboard-form h2 { font-size: 2.2rem; }
    .btn-contact-submit { width: 100%; justify-content: center; }
    
    .dashboard-info-list {
        flex-direction: column;
    }
    .dashboard-info-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 { font-size: 2.1rem; }
    .contact-full-map { height: 350px; }
    .marquee-logo-box { width: 160px; height: 80px; }
    .contact-dashboard-form { padding: 30px 20px; }
}

