/* ================= DESIGN SYSTEM / VARIABLES ================= */
:root {
    --mt-bg: #05070a;
    --mt-card: rgba(10, 12, 25, 0.78);
    --mt-accent: #00f5ff;
    --mt-text: #fff;
    --mt-muted: #dbefff;
    --mt-border: rgba(0, 245, 255, 0.35);
    --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
    --gradient-accent: linear-gradient(135deg, #00f5ff, #5b8def, #7b5cff);
    --gradient-border: linear-gradient(45deg, #00f5ff, #7b5cff, #ff2b2b);
}

/* ================= GLOBAL BACKGROUND & OVERLAYS ================= */
.mt-premium-info-container {
    font-family: var(--font-inter);
    background-color: transparent; 
    color: var(--mt-text);
    padding: 80px 4%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.mt-premium-info-container *, 
.mt-premium-info-container *::before, 
.mt-premium-info-container *::after {
    box-sizing: border-box;
}

#global-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    pointer-events: none;
}

#global-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f061c;
    opacity: 0.85;
    z-index: -2;
    pointer-events: none;
}

.global-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.15), transparent 40%),
      radial-gradient(circle at 80% 80%, rgba(123, 92, 255, 0.12), transparent 40%);
}

/* ================= ANIMATION CLASSES ================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= ENTERPRISE CONTACT SECTION ================= */
.mt-enterprise-contact {
    padding: 20px 0;
    width: 100%;
    position: relative;
}

.mt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

/* Text Block Styling */
.mt-text-block h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #8b949e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-contact-details {
    margin-top: 40px;
    border-left: 2px solid var(--mt-accent);
    padding-left: 24px;
}

.detail-item { 
    margin-bottom: 30px; 
}

.detail-item h4 { 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--mt-accent); 
    margin-top: 0;
    margin-bottom: 8px; 
}

.detail-item p { 
    font-size: 1.1rem; 
    font-weight: 500; 
    color: var(--mt-muted);
    margin: 0;
    line-height: 1.6;
}

/* Form Styling with Glow Border Hover Effect */
.mt-form-box {
    background: var(--mt-card);
    border: 2px solid var(--mt-border);
    padding: 40px;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mt-form-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    padding: 2px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mt-form-box:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0, 245, 255, 0.2);
}

.mt-form-box:hover::before {
    opacity: 1;
}

.mt-form-box h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #ff2b2b;
    font-weight: 700;
}

.mt-input {
    width: 100%;
    background: rgba(5, 7, 10, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    box-sizing: border-box;
    color: #fff;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mt-input::placeholder {
    color: rgba(219, 239, 255, 0.4);
}

.mt-input:focus { 
    border-color: var(--mt-accent); 
    outline: none; 
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.25);
}

textarea.mt-input {
    resize: vertical;
}

.mt-btn {
    background: var(--gradient-accent);
    color: #0f061c;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mt-btn:hover { 
    transform: scale(1.03);
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.8);
}

/* ================= MAP EMBED SECTION ================= */
.mt-map-section {
    margin-top: 60px;
    width: 100%;
    position: relative;
    background: var(--mt-card);
    border: 2px solid var(--mt-border);
    border-radius: 14px;
    padding: 15px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.mt-map-section:hover {
    border-color: var(--mt-accent);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.15);
}

.mt-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mt-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(1.2); /* Inverts map to seamlessly match high-tech dark theme */
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (min-width: 992px) {
    .mt-grid { 
        grid-template-columns: 1fr 480px; 
        gap: 60px; 
    }
}

@media (max-width: 768px) {
    .mt-map-container {
        height: 350px;
    }
}
