.contact-section{
    padding:70px 15px;
    background:#0b1220;
    color:#fff;
}

/* LAYOUT */
.contact-shell{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:20px;
}

/* LEFT CARD */
.contact-modern-card{
    background:rgba(17,24,39,0.75);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* =========================
   HEADER (IMPROVED DESIGN)
========================= */
.contact-header{
    text-align:center;
    margin-bottom:18px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    position:relative;
}

.contact-header h2{
    font-size:22px;
    margin:0;
    font-weight:700;
    letter-spacing:0.5px;
    background:linear-gradient(135deg,#60a5fa,#2563eb);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-header p{
    margin:6px 0 0;
    font-size:13px;
    opacity:0.75;
}

/* GRID */
.contact-info-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}

/* CARD ITEM */
.contact-info-item{
    text-align:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:12px;
    padding:16px;
    transition:0.25s ease;
}

.contact-info-item:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,0.06);
}

/* ICON */
.contact-icon{
    width:42px;
    height:42px;
    margin:0 auto 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    box-shadow:0 6px 15px rgba(37,99,235,0.3);
}

/* TEXT */
.contact-info-item h3{
    margin:6px 0 4px;
    font-size:14px;
}

.contact-info-item p{
    margin:0;
    font-size:13px;
    opacity:0.85;
}

/* BUTTON */
.contact-btn{
    display:inline-block;
    margin-top:10px;
    padding:6px 12px;
    font-size:12px;
    border-radius:8px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    transition:0.25s ease;
}

.contact-btn:hover{
    background:#1d4ed8;
    transform:translateY(-1px);
}

/* SOCIAL */
.social-section{
    margin-top:16px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.social-modern{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

.social{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    color:#fff;
    font-size:18px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    position:relative;
    overflow:hidden;
    transition:0.25s ease;
}

.social::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    opacity:0;
    transition:0.25s ease;
}

.social i{
    position:relative;
    z-index:2;
}

.social:hover::before{
    opacity:1;
}

.social:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(37,99,235,0.3);
}

/* =========================
   MAP SECTION
========================= */
.map-frame{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    min-height:450px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

.map-frame iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
    z-index:1;
}

/* OVERLAY */
.map-overlay-layer{
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
}

/* PIN */
.map-pin{
    position:absolute;
    top:50%;
    left:50%;
    width:14px;
    height:14px;
    background:#ef4444;
    border-radius:50%;
    transform:translate(-50%, -50%);
}

.map-pin::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:40px;
    height:40px;
    background:rgba(239,68,68,0.35);
    border-radius:50%;
    transform:translate(-50%, -50%);
    animation:pulse 1.6s infinite;
}

@keyframes pulse{
    0%{transform:translate(-50%,-50%) scale(0.5); opacity:1;}
    100%{transform:translate(-50%,-50%) scale(2); opacity:0;}
}

/* MAP BUTTONS */
.map-actions{
    position:absolute;
    bottom:15px;
    left:15px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.map-actions a{
    pointer-events:auto;
}

.map-btn{
    display:flex;
    align-items:center;
    gap:6px;
    padding:10px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    background:rgba(17,24,39,0.85);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    transition:0.25s ease;
}

.map-btn:hover{
    transform:translateY(-2px);
    background:#2563eb;
}

.waze-btn:hover{
    background:#06b6d4;
}

/* TEXT (EMAIL BLOCK FIXED) */
.contact-text{
    margin-top:8px;
}

.contact-text h3{
    margin:0;
    font-size:14px;
    font-weight:600;
}

.contact-text p{
    margin:4px 0 0;
    font-size:13px;
    opacity:0.8;
}