/* =======================================================
   COMBINED MASTER CSS — DELECON® COMMERCIAL
   ======================================================= */

/* MAIN WRAP & LAYOUT */
.office-main { background: #f3f5fb; padding: 18px 0 40px; font-family: sans-serif; }
.office-shell { max-width: 1180px; margin: 0 auto; padding: 0 14px; }

.office-layout { 
    display: grid; 
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr); 
    gap: 22px; 
}

@media (max-width: 960px) { .office-layout { grid-template-columns: 1fr; } }

/* HERO SECTION */
.office-hero { margin-bottom: 28px; }
.office-hero-video { 
    border-radius: 24px; overflow: hidden; 
    box-shadow: 0 16px 40px rgba(0,0,0,0.22); 
    margin-bottom: 18px; background: #000; position: relative;
}
.office-hero-video img { width: 100%; display: block; object-fit: cover; }

.play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 78px; height: 78px;
    border-radius: 50%; background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 42px; transition: 0.3s;
}
.office-hero-video a:hover .play-btn { background: #c5a059; transform: translate(-50%, -50%) scale(1.1); }

.office-hero-card { 
    background: #fff; border-radius: 26px; padding: 22px; 
    box-shadow: 0 16px 40px rgba(0,0,0,0.08); 
}
.office-breadcrumbs { font-size: 0.8rem; color: #6b7280; margin-bottom: 6px; }
.office-hero-card h1 { font-size: 2rem; color: #0f172a; margin: 0 0 10px; }

/* CONTENT CARDS */
.office-card { 
    background: #fff; border-radius: 26px; padding: 22px; 
    margin-bottom: 20px; box-shadow: 0 18px 40px rgba(15,23,42,0.08); 
}
.office-card h2 { color: #020617; font-size: 1.35rem; margin-bottom: 15px; }
.office-item h3 { color: #c5a059; font-size: 1.1rem; margin-bottom: 8px; }
.office-grid { display: grid; gap: 14px; }

@media (min-width: 768px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }

/* CITY CARDS */
.office-city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.office-city-card { 
    position: relative; background: #fff; border-radius: 20px; 
    padding: 20px 20px 20px 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid #c5a059; transition: 0.3s;
}
.office-city-card:hover { transform: translateY(-5px); }
.office-city-card h3 { color: #0b3c88; margin-bottom: 5px; }

/* SIDEBAR & PILLS */
.office-sidebar { display: flex; flex-direction: column; gap: 18px; }
.office-sidebar-box { 
    background: #fff; border-radius: 24px; padding: 25px; 
    box-shadow: 0 18px 40px rgba(15,23,42,0.08); border: 1px solid #eee;
}
.office-sidebar-primary { 
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); color: #fff; border: none; 
}
.office-sidebar-primary h3 { color: #fff !important; }

.office-pill {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #c5a059; color: #000 !important; font-weight: 600;
    padding: 12px; border-radius: 50px; margin-top: 15px; transition: 0.3s; text-decoration: none;
}
.office-pill:hover { background: #fff; color: #c5a059 !important; }

/* FAQ */
.office-faq details { border-radius: 15px; border: 1px solid #e5e7eb; padding: 12px; margin-bottom: 10px; background: #f9fafb; }
.office-faq summary { cursor: pointer; font-weight: 600; list-style: none; }
.office-faq summary::before { content: "▸"; color: #c5a059; margin-right: 8px; }

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .office-hero-card h1 { font-size: 1.5rem; }
    .office-hero-video .play-btn { width: 58px; height: 58px; font-size: 30px; }
}