/* 9

Contact and FORM Section


*/

/* Layout & Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Details List */
.contact-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1.2;
}

.contact-text strong {
    color: var(--bright-white);
    font-size: 1.05rem;
}

.contact-text, .contact-text a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.5;
    transition: color var(--transition-speed) ease;
}

.contact-text a:hover {
    color: var(--construction-orange);
}

/* Company Credentials */
.reg-details {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--steel-blue);
    padding: 20px;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.reg-details h3 {
    color: var(--construction-orange);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.reg-grid p {
    color: var(--bright-white);
    font-size: 0.95rem;
    margin: 0;
}

.reg-grid span {
    color: var(--text-muted);
    display: inline-block;
    width: 90px;
}

/* Map Container */

.map-container {
  /* Slightly softer, more modern corner radius */
  border-radius: 12px; 
  overflow: hidden;
  
  /* A very subtle background in case the map takes a second to load */
  background: rgba(17, 30, 59, 0.3); 
  
  /* Softer border */
  border: 1px solid rgba(255, 255, 255, 0.08);
  
  /* Multi-layered shadow: 
     1. Sharp inner shadow for the physical edge
     2. Broad, dark drop shadow for depth
     3. Subtle colored glow to match your #4A90E2 icons */
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.5),
    0 10px 15px -3px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(74, 144, 226, 0.1); 

  /* Smooth animation for the hover state */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  
  /* Standard map sizing constraints to prevent it from collapsing */
  width: 100%;
  min-height: 350px; 
}

/* Make it feel interactive when a user mouses over it */
.map-container:hover {
  /* Lifts the map up slightly */
  transform: translateY(-4px); 
  
  /* Brightens the border slightly */
  border-color: rgba(255, 255, 255, 0.15);
  
  /* Deepens the drop shadow and intensifies the blue glow */
  box-shadow: 
    0 10px 15px -3px rgba(0, 0, 0, 0.6),
    0 20px 25px -5px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(74, 144, 226, 0.25); 
}

/* Optional: If you want to dim the map slightly until hovered (looks great on dark sites) */
.map-container iframe, 
.map-container .leaflet-container {
  transition: opacity 0.3s ease;
  opacity: 0.85; /* Dims the actual map interface */
}

.map-container:hover iframe,
.map-container:hover .leaflet-container {
  opacity: 1; /* Brightens on hover */
}
/* Form Styling */
.form-card {
    background: var(--deep-navy);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--construction-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-card h3 {
    color: var(--bright-white);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--bright-white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--steel-blue);
    border-radius: 4px;
    color: var(--bright-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--construction-orange);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.form-group option {
    background: var(--deep-navy); /* Keeps the dropdown readable */
    color: var(--bright-white);
}

.submit-btn {
    width: 100%;
    background: var(--construction-orange);
    color: #111;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.submit-btn:hover {
    background: #e69500;
    transform: translateY(-2px);
}

